None
This is the validation notebook that displays the regression tests for the NIRISS instrument in the JWST calibration pipeline. This notebook runs and displays the regression tests that are performed as a part of the normal software continuous integration process. For more information on the pipeline visit the links below.
Pipeline description: https://jwst-pipeline.readthedocs.io/en/latest/index.html
Pipeline code: https://github.com/spacetelescope/jwst
JWST regression tests are located in the regtest folder of the pipeline within the GitHub repository.
These are terms or acronymns used in this notebook that may not be known a general audience.
JWST: James Webb Space Telescope
NIRISS: Near-Infrared Camera
Regression testing is a software testing method which checks if the pipeline step produces the expected outcome by comparing an input file with a truth file. Truth files for testing are stored in Artifactory.
Data used for regression tests is stored in Artifactory, and consists of a mix of simulated and ground testing data for the different instruments and modes.
import os
if 'CRDS_CACHE_TYPE' in os.environ:
if os.environ['CRDS_CACHE_TYPE'] == 'local':
os.environ['CRDS_PATH'] = os.path.join(os.environ['HOME'], 'crds', 'cache')
elif os.path.isdir(os.environ['CRDS_CACHE_TYPE']):
os.environ['CRDS_PATH'] = os.environ['CRDS_CACHE_TYPE']
print('CRDS cache location: {}'.format(os.environ['CRDS_PATH']))
CRDS cache location: /grp/crds/cache
import tempfile
import os
import pytest
import jwst
from IPython.display import IFrame
from IPython.core.display import HTML
Here we define any convenience functions to help with running the unit tests.
print("Testing JWST Pipeline {}".format(jwst.__version__))
jwst_dir = os.path.dirname(jwst.__file__)
regtest = os.path.join(jwst_dir, 'regtest')
associations = os.path.join(jwst_dir, 'associations')
datamodels = os.path.join(jwst_dir, 'datamodels')
stpipe = os.path.join(jwst_dir, 'stpipe')
with tempfile.TemporaryDirectory() as tmpdir:
outdir = os.path.join(tmpdir, 'regtest_report.html')
!pytest --bigdata {regtest} -k 'test_niriss' -v --ignore={associations} --ignore={datamodels} --ignore={stpipe} --html={outdir} --self-contained-html
with open(os.path.join(tmpdir, "regtest_report.html")) as report_file:
html_report = "".join(report_file.readlines())
Testing JWST Pipeline 1.8.2 ============================= test session starts ============================== platform linux -- Python 3.9.13, pytest-7.2.0, pluggy-1.0.0 -- /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/bin/python cachedir: .pytest_cache metadata: {'Python': '3.9.13', 'Platform': 'Linux-3.10.0-1160.76.1.el7.x86_64-x86_64-with-glibc2.17', 'Packages': {'pytest': '7.2.0', 'pluggy': '1.0.0'}, 'Plugins': {'ci-watson': '0.6.1', 'requests-mock': '1.10.0', 'asdf': '2.13.0', 'openfiles': '0.5.0', 'forked': '1.4.0', 'doctestplus': '0.12.1', 'cov': '4.0.0', 'xdist': '2.5.0', 'jwst': '1.8.2', 'anyio': '3.6.2', 'metadata': '2.0.4', 'html': '3.2.0'}, 'BUILD_NUMBER': '126', 'BUILD_ID': '126', 'BUILD_URL': 'https://plwishmaster.stsci.edu:8081/job/Notebooks/job/jwst_validation_notebooks_spacetelescope/126/', 'NODE_NAME': 'pljwvalnb.stsci.edu', 'JOB_NAME': 'Notebooks/jwst_validation_notebooks_spacetelescope', 'BUILD_TAG': 'jenkins-Notebooks-jwst_validation_notebooks_spacetelescope-126', 'EXECUTOR_NUMBER': '28', 'JENKINS_URL': 'https://plwishmaster.stsci.edu:8081/', 'WORKSPACE': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope', 'GIT_COMMIT': 'f0c18233cd0fcb3e941bff4e8793c6fbaf3467e2', 'GIT_URL': 'https://github.com/spacetelescope/jwst_validation_notebooks', 'GIT_BRANCH': 'origin/master'} rootdir: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope plugins: ci-watson-0.6.1, requests-mock-1.10.0, asdf-2.13.0, openfiles-0.5.0, forked-1.4.0, doctestplus-0.12.1, cov-4.0.0, xdist-2.5.0, jwst-1.8.2, anyio-3.6.2, metadata-2.0.4, html-3.2.0 collected 583 items / 554 deselected / 29 selected ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_niriss_ami3_exp[022-c1014_ami] PASSED [ 3%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_niriss_ami3_exp[025-c1014_ami] PASSED [ 6%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_niriss_ami3_product[amiavg] PASSED [ 10%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_niriss_ami3_product[psf-amiavg] PASSED [ 13%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_niriss_ami3_product[aminorm] PASSED [ 17%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_ami_analyze_with_nans PASSED [ 20%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_ami_average_with_sizes PASSED [ 24%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[calints] PASSED [ 27%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[flat_field] PASSED [ 31%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[srctype] PASSED [ 34%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[x1dints] PASSED [ 37%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints PASSED [ 41%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_x1dints PASSED [ 44%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_whtlt PASSED [ 48%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[assign_wcs] PASSED [ 51%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[bsub] FAILED [ 55%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[cal] FAILED [ 58%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[esec] FAILED [ 62%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[extract_2d] FAILED [ 65%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[flat_field] FAILED [ 68%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[photom] FAILED [ 72%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[srctype] FAILED [ 75%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[x1d] FAILED [ 79%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00015-cal] FAILED [ 82%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00015-x1d] FAILED [ 86%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00015-c1d] FAILED [ 89%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00104-cal] FAILED [ 93%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00104-x1d] FAILED [ 96%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00104-c1d] FAILED [100%] =================================== FAILURES =================================== __________________________ test_nis_wfss_spec2[bsub] ___________________________ run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...01_nis_bsub.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_bsub.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'bsub' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_bsub.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_bsub.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [5, 5]: E a> 0.82082546 E b> 0.82067204 E Data differs at [6, 5]: E a> 0.089759365 E b> 0.08975724 E Data differs at [7, 5]: E a> 1.203846 E b> 1.2038013 E Data differs at [8, 5]: E a> -0.17252588 E b> -0.17267835 E Data differs at [9, 5]: E a> -0.060819507 E b> -0.06097293 E Data differs at [10, 5]: E a> -0.06569576 E b> -0.065849185 E Data differs at [11, 5]: E a> -0.083259344 E b> -0.083412886 E Data differs at [12, 5]: E a> -0.038711846 E b> -0.03883761 E Data differs at [13, 5]: E a> -0.15667588 E b> -0.15680462 E Data differs at [14, 5]: E a> 0.027448654 E b> 0.027335584 E ... E 4155780 different pixels found (99.08% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f48aa5cc880>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError ___________________________ test_nis_wfss_spec2[cal] ___________________________ run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...0001_nis_cal.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'cal' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_cal.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 56 E b: 58 E Extra keyword 'SRCDEC' in b: -30.40553434784723 E Extra keyword 'SRCRA' in b: 3.592040812067641 E Keyword SLTSTRT1 has different values: E a> 1389 E ? - E b> 1390 E ? + E Keyword SLTSTRT2 has different values: E a> 1113 E ? ^ E b> 1114 E ? ^ E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 1363.4772 E Data differs at [2, 125]: E a> 0.0 E b> 1314.6934 E Data differs at [3, 125]: E a> 0.0 E b> 1513.2789 E Data differs at [4, 125]: E a> 0.0 E b> 1438.8994 E Data differs at [5, 125]: E a> 0.0 E b> 1932.6174 E Data differs at [6, 125]: E a> 0.0 E b> 1949.8593 E Data differs at [7, 125]: E a> 0.0 E b> 2132.382 E Data differs at [8, 125]: E a> 0.0 E b> 1579.2274 E Data differs at [9, 125]: E a> 0.0 E b> 1932.2921 E Data differs at [10, 125]: E a> 0.0 E b> 1362.5513 E ... E 15249 different pixels found (19.22% different). E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1 E b> 5 E Data differs at [2, 1]: E a> 1 E b> 5 E Data differs at [5, 1]: E a> 1 E b> 5 E Data differs at [16, 1]: E a> 1 E b> 5 E Data differs at [17, 1]: E a> 1 E b> 5 E Data differs at [28, 1]: E a> 1 E b> 5 E Data differs at [32, 1]: E a> 5 E b> 1 E Data differs at [44, 1]: E a> 5 E b> 1 E Data differs at [46, 1]: E a> 1 E b> 16777221 E Data differs at [48, 1]: E a> 1 E b> 5 E ... E 13566 different pixels found (17.10% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 191.5967 E Data differs at [2, 125]: E a> 0.0 E b> 186.99792 E Data differs at [3, 125]: E a> 0.0 E b> 190.20242 E Data differs at [4, 125]: E a> 0.0 E b> 188.07532 E Data differs at [5, 125]: E a> 0.0 E b> 192.07884 E Data differs at [6, 125]: E a> 0.0 E b> 199.28291 E Data differs at [7, 125]: E a> 0.0 E b> 197.129 E Data differs at [8, 125]: E a> 0.0 E b> 191.76932 E Data differs at [9, 125]: E a> 0.0 E b> 192.68011 E Data differs at [10, 125]: E a> 0.0 E b> 192.26921 E ... E 15246 different pixels found (19.22% different). E E Extension HDU 4 (WAVELENGTH, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [2, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [3, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [4, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [5, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [6, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [7, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [8, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [9, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [10, 1]: E a> 1.9013734 E b> 1.8966796 E ... E 79339 different pixels found (100.00% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 36424.82 E Data differs at [2, 125]: E a> 0.0 E b> 34599.67 E Data differs at [3, 125]: E a> 0.0 E b> 35775.6 E Data differs at [4, 125]: E a> 0.0 E b> 35013.43 E Data differs at [5, 125]: E a> 0.0 E b> 36640.895 E Data differs at [6, 125]: E a> 0.0 E b> 39414.37 E Data differs at [7, 125]: E a> 0.0 E b> 38401.395 E Data differs at [8, 125]: E a> 0.0 E b> 36373.76 E Data differs at [9, 125]: E a> 0.0 E b> 36752.85 E Data differs at [10, 125]: E a> 0.0 E b> 36637.6 E ... E 15248 different pixels found (19.22% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 261.33878 E Data differs at [2, 125]: E a> 0.0 E b> 348.2399 E Data differs at [3, 125]: E a> 0.0 E b> 372.7315 E Data differs at [4, 125]: E a> 0.0 E b> 334.8433 E Data differs at [5, 125]: E a> 0.0 E b> 208.7587 E Data differs at [6, 125]: E a> 0.0 E b> 254.74019 E Data differs at [7, 125]: E a> 0.0 E b> 404.5371 E Data differs at [8, 125]: E a> 0.0 E b> 372.12772 E Data differs at [9, 125]: E a> 0.0 E b> 327.5682 E Data differs at [10, 125]: E a> 0.0 E b> 307.2687 E ... E 15247 different pixels found (19.22% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 23.128403 E Data differs at [2, 125]: E a> 0.0 E b> 20.311348 E Data differs at [3, 125]: E a> 0.0 E b> 28.629303 E Data differs at [4, 125]: E a> 0.0 E b> 24.053085 E Data differs at [5, 125]: E a> 0.0 E b> 44.628468 E Data differs at [6, 125]: E a> 0.0 E b> 44.564407 E Data differs at [7, 125]: E a> 0.0 E b> 53.908096 E Data differs at [8, 125]: E a> 0.0 E b> 29.58187 E Data differs at [9, 125]: E a> 0.0 E b> 45.20958 E Data differs at [10, 125]: E a> 0.0 E b> 22.578938 E ... E 15245 different pixels found (19.22% different). E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.40018067148927 E Extra keyword 'SRCRA' in b: 3.586356414491374 E Keyword SLTSTRT1 has different values: E a> 1032 E ? ^ E b> 1033 E ? ^ E Keyword SLTSTRT2 has different values: E a> 1314 E ? ^ E b> 1315 E ? ^ E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 3985.8796 E Data differs at [2, 85]: E a> 0.0 E b> 4118.5845 E Data differs at [3, 85]: E a> 0.0 E b> -58.99588 E Data differs at [4, 85]: E a> 0.0 E b> 4555.2866 E Data differs at [5, 85]: E a> 0.0 E b> 5155.0547 E Data differs at [6, 85]: E a> 0.0 E b> 4215.951 E Data differs at [7, 85]: E a> 0.0 E b> 4324.001 E Data differs at [8, 85]: E a> 0.0 E b> 4124.1924 E Data differs at [9, 85]: E a> 0.0 E b> 3861.4543 E Data differs at [10, 85]: E a> 0.0 E b> 4730.775 E ... E 15957 different pixels found (28.11% different). E E Extension HDU 9 (DQ, 2): E E Data contains differences: E Data differs at [2, 1]: E a> 5 E b> 1 E Data differs at [3, 1]: E a> 5 E b> 1 E Data differs at [4, 1]: E a> 5 E b> 1 E Data differs at [12, 1]: E a> 1 E b> 5 E Data differs at [13, 1]: E a> 1 E b> 5 E Data differs at [15, 1]: E a> 5 E b> 8388613 E Data differs at [18, 1]: E a> 16779265 E b> 1 E Data differs at [20, 1]: E a> 1 E b> 35914753 E Data differs at [46, 1]: E a> 5 E b> 1 E Data differs at [47, 1]: E a> 5 E b> 1 E ... E 9663 different pixels found (17.02% different). E E Extension HDU 10 (ERR, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 300.3294 E Data differs at [2, 85]: E a> 0.0 E b> 280.55493 E Data differs at [3, 85]: E a> 0.0 E b> 85.338104 E Data differs at [4, 85]: E a> 0.0 E b> 275.2996 E Data differs at [5, 85]: E a> 0.0 E b> 305.31372 E Data differs at [6, 85]: E a> 0.0 E b> 287.1998 E Data differs at [7, 85]: E a> 0.0 E b> 280.49844 E Data differs at [8, 85]: E a> 0.0 E b> 278.29352 E Data differs at [9, 85]: E a> 0.0 E b> 285.17935 E Data differs at [10, 85]: E a> 0.0 E b> 288.2807 E ... E 15958 different pixels found (28.11% different). E E Extension HDU 11 (WAVELENGTH, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [2, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [3, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [4, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [5, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [6, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [7, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [8, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [9, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [10, 1]: E a> 1.7154493 E b> 1.7107556 E ... E 56772 different pixels found (100.00% different). E E Extension HDU 12 (VAR_POISSON, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 88679.945 E Data differs at [2, 85]: E a> 0.0 E b> 78039.22 E Data differs at [3, 85]: E a> 0.0 E b> 2036.2072 E Data differs at [4, 85]: E a> 0.0 E b> 75026.336 E Data differs at [5, 85]: E a> 0.0 E b> 92242.55 E Data differs at [6, 85]: E a> 0.0 E b> 81677.06 E Data differs at [7, 85]: E a> 0.0 E b> 77789.305 E Data differs at [8, 85]: E a> 0.0 E b> 76522.234 E Data differs at [9, 85]: E a> 0.0 E b> 80232.84 E Data differs at [10, 85]: E a> 0.0 E b> 82342.11 E ... E 15950 different pixels found (28.09% different). E E Extension HDU 13 (VAR_RNOISE, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 1324.0547 E Data differs at [2, 85]: E a> 0.0 E b> 479.76517 E Data differs at [3, 85]: E a> 0.0 E b> 5246.3857 E Data differs at [4, 85]: E a> 0.0 E b> 524.931 E Data differs at [5, 85]: E a> 0.0 E b> 642.7656 E Data differs at [6, 85]: E a> 0.0 E b> 598.9909 E Data differs at [7, 85]: E a> 0.0 E b> 667.98175 E Data differs at [8, 85]: E a> 0.0 E b> 725.91876 E Data differs at [9, 85]: E a> 0.0 E b> 904.42816 E Data differs at [10, 85]: E a> 0.0 E b> 503.98715 E ... E 15959 different pixels found (28.11% different). E E Extension HDU 14 (VAR_FLAT, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 193.7494 E Data differs at [2, 85]: E a> 0.0 E b> 192.08748 E Data differs at [4, 85]: E a> 0.0 E b> 238.59854 E Data differs at [5, 85]: E a> 0.0 E b> 331.16757 E Data differs at [6, 85]: E a> 0.0 E b> 207.66754 E Data differs at [7, 85]: E a> 0.0 E b> 222.09827 E Data differs at [8, 85]: E a> 0.0 E b> 199.12457 E Data differs at [9, 85]: E a> 0.0 E b> 189.98973 E Data differs at [10, 85]: E a> 0.0 E b> 259.66467 E Data differs at [11, 85]: E a> 0.0 E b> 166.92542 E ... E 15957 different pixels found (28.11% different). E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.39411309485647 E Extra keyword 'SRCRA' in b: 3.585624631060788 E Keyword NAXIS2 has different values: E a> 321 E b> 322 E Keyword SLTSIZE1 has different values: E a> 181 E b> 183 E Keyword SLTSIZE2 has different values: E a> 321 E b> 322 E Keyword SLTSTRT2 has different values: E a> 1177 E ? ^ E b> 1178 E ? ^ E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 16 (DQ, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 17 (ERR, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 18 (WAVELENGTH, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 19 (VAR_POISSON, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 20 (VAR_RNOISE, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 21 (VAR_FLAT, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.39163095906152 E Extra keyword 'SRCRA' in b: 3.59464814053007 E Keyword NAXIS2 has different values: E a> 228 E b> 229 E Keyword SLTSIZE1 has different values: E a> 197 E b> 199 E Keyword SLTSIZE2 has different values: E a> 228 E b> 229 E Keyword SLTSTRT2 has different values: E a> 801 E b> 802 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 29 (SCI, 5): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.39602892937478 E Extra keyword 'SRCRA' in b: 3.58789771169632 E Keyword NAXIS2 has different values: E a> 203 E b> 205 E Keyword SLTSIZE2 has different values: E a> 203 E b> 205 E Keyword SLTSTRT1 has different values: E a> 857 E b> 858 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 30 (DQ, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 31 (ERR, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 32 (WAVELENGTH, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 33 (VAR_POISSON, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 34 (VAR_RNOISE, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 35 (VAR_FLAT, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 36 (SCI, 6): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSIZE1 has different values: E a> 133 E b> 134 E Keyword SLTSTRT2 has different values: E a> 217 E b> 218 E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 37 (DQ, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 38 (ERR, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 39 (WAVELENGTH, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 40 (VAR_POISSON, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 41 (VAR_RNOISE, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 42 (VAR_FLAT, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 43 (SCI, 7): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.40926138863649 E Extra keyword 'SRCRA' in b: 3.579587921874186 E Keyword NAXIS2 has different values: E a> 209 E b> 211 E Keyword SLTSIZE1 has different values: E a> 117 E b> 119 E Keyword SLTSIZE2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 44 (DQ, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 45 (ERR, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 46 (WAVELENGTH, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 47 (VAR_POISSON, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 48 (VAR_RNOISE, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 49 (VAR_FLAT, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 50 (SCI, 8): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.38980139908971 E Extra keyword 'SRCRA' in b: 3.600004699000835 E Keyword NAXIS2 has different values: E a> 236 E b> 237 E Keyword SLTSIZE1 has different values: E a> 10 E b> 11 E Keyword SLTSIZE2 has different values: E a> 236 E b> 237 E Keyword SLTSTRT2 has different values: E a> 521 E b> 522 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 51 (DQ, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 52 (ERR, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 53 (WAVELENGTH, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 54 (VAR_POISSON, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 55 (VAR_RNOISE, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 56 (VAR_FLAT, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 57 (SCI, 9): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.3860237133523 E Extra keyword 'SRCRA' in b: 3.569829752935783 E Keyword SLTSTRT1 has different values: E a> 25 E b> 26 E Keyword SLTSTRT2 has different values: E a> 1791 E ? ^ E b> 1792 E ? ^ E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 566.4476 E Data differs at [2, 102]: E a> 0.0 E b> 338.4689 E Data differs at [3, 102]: E a> 0.0 E b> 159.03731 E Data differs at [4, 102]: E a> 0.0 E b> 145.91112 E Data differs at [5, 102]: E a> 0.0 E b> 305.26697 E Data differs at [6, 102]: E a> 0.0 E b> 195.4081 E Data differs at [7, 102]: E a> 0.0 E b> 491.52173 E Data differs at [8, 102]: E a> 0.0 E b> 190.26485 E Data differs at [9, 102]: E a> 0.0 E b> 597.8491 E Data differs at [10, 102]: E a> 0.0 E b> 1145.7515 E ... E 15732 different pixels found (28.51% different). E E Extension HDU 58 (DQ, 9): E E Data contains differences: E Data differs at [15, 1]: E a> 1 E b> 5 E Data differs at [16, 1]: E a> 1 E b> 5 E Data differs at [20, 1]: E a> 1 E b> 5 E Data differs at [21, 1]: E a> 1 E b> 5 E Data differs at [28, 1]: E a> 1 E b> 5 E Data differs at [32, 1]: E a> 5 E b> 1 E Data differs at [67, 1]: E a> 1 E b> 5 E Data differs at [68, 1]: E a> 1 E b> 5 E Data differs at [70, 1]: E a> 5 E b> 1 E Data differs at [71, 1]: E a> 5 E b> 1 E ... E 8873 different pixels found (16.08% different). E E Extension HDU 59 (ERR, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 152.93675 E Data differs at [2, 102]: E a> 0.0 E b> 148.28142 E Data differs at [3, 102]: E a> 0.0 E b> 146.94443 E Data differs at [4, 102]: E a> 0.0 E b> 134.35672 E Data differs at [5, 102]: E a> 0.0 E b> 141.13506 E Data differs at [6, 102]: E a> 0.0 E b> 136.90057 E Data differs at [7, 102]: E a> 0.0 E b> 144.3461 E Data differs at [8, 102]: E a> 0.0 E b> 134.80638 E Data differs at [9, 102]: E a> 0.0 E b> 141.16875 E Data differs at [10, 102]: E a> 0.0 E b> 148.1953 E ... E 15729 different pixels found (28.51% different). E E Extension HDU 60 (WAVELENGTH, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [2, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [3, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [4, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [5, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [6, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [7, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [8, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [9, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [10, 1]: E a> 1.7922435 E b> 1.7875497 E ... E 55176 different pixels found (100.00% different). E E Extension HDU 61 (VAR_POISSON, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 22543.514 E Data differs at [2, 102]: E a> 0.0 E b> 21227.89 E Data differs at [3, 102]: E a> 0.0 E b> 20556.422 E Data differs at [4, 102]: E a> 0.0 E b> 17923.559 E Data differs at [5, 102]: E a> 0.0 E b> 19693.129 E Data differs at [6, 102]: E a> 0.0 E b> 18591.36 E Data differs at [7, 102]: E a> 0.0 E b> 20624.27 E Data differs at [8, 102]: E a> 0.0 E b> 17996.79 E Data differs at [9, 102]: E a> 0.0 E b> 19779.443 E Data differs at [10, 102]: E a> 0.0 E b> 21791.436 E ... E 15731 different pixels found (28.51% different). E E Extension HDU 62 (VAR_RNOISE, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 842.26373 E Data differs at [2, 102]: E a> 0.0 E b> 758.1521 E Data differs at [3, 102]: E a> 0.0 E b> 1035.9584 E Data differs at [4, 102]: E a> 0.0 E b> 127.92964 E Data differs at [5, 102]: E a> 0.0 E b> 224.8679 E Data differs at [6, 102]: E a> 0.0 E b> 149.96489 E Data differs at [7, 102]: E a> 0.0 E b> 208.6493 E Data differs at [8, 102]: E a> 0.0 E b> 175.55556 E Data differs at [9, 102]: E a> 0.0 E b> 145.00322 E Data differs at [10, 102]: E a> 0.0 E b> 154.8307 E ... E 15730 different pixels found (28.51% different). E E Extension HDU 63 (VAR_FLAT, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 3.8734808 E Data differs at [2, 102]: E a> 0.0 E b> 1.3375401 E Data differs at [3, 102]: E a> 0.0 E b> 0.28612608 E Data differs at [4, 102]: E a> 0.0 E b> 0.23972379 E Data differs at [5, 102]: E a> 0.0 E b> 1.1103776 E Data differs at [6, 102]: E a> 0.0 E b> 0.44549134 E Data differs at [7, 102]: E a> 0.0 E b> 2.8770452 E Data differs at [8, 102]: E a> 0.0 E b> 0.4184726 E Data differs at [9, 102]: E a> 0.0 E b> 4.171244 E Data differs at [10, 102]: E a> 0.0 E b> 15.577756 E ... E 15666 different pixels found (28.39% different). E E Extension HDU 64 (SCI, 10): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 65 (DQ, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 66 (ERR, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 67 (WAVELENGTH, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 68 (VAR_POISSON, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 69 (VAR_RNOISE, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 70 (VAR_FLAT, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f490510c2e0>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError __________________________ test_nis_wfss_spec2[esec] ___________________________ run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...01_nis_esec.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_esec.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'esec' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_esec.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_esec.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [5, 5]: E a> 1.3314703 E b> 1.3312213 E Data differs at [6, 5]: E a> 0.14559968 E ? - ^ E b> 0.14559624 E ? ^^ E Data differs at [7, 5]: E a> 1.9527721 E b> 1.9526997 E Data differs at [8, 5]: E a> -0.27985618 E b> -0.2801035 E Data differs at [9, 5]: E a> -0.09865601 E b> -0.09890488 E Data differs at [10, 5]: E a> -0.10656584 E b> -0.106814705 E Data differs at [11, 5]: E a> -0.13505593 E b> -0.13530499 E Data differs at [12, 5]: E a> -0.062794924 E b> -0.06299893 E Data differs at [13, 5]: E a> -0.2541457 E ? ^ ^ E b> -0.25435454 E ? ^^ ^ E Data differs at [14, 5]: E a> 0.044524774 E b> 0.04434136 E ... E 4155840 different pixels found (99.08% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [2033, 9]: E a> 0.05917287 E ? ^^ E b> 0.059172016 E ? ^^^ E Data differs at [42, 11]: E a> 0.00987731 E ? ^^ E b> 0.009877645 E ? ^^^ E Data differs at [651, 11]: E a> 0.0056100776 E b> 0.005610489 E Data differs at [1230, 11]: E a> 0.0056353775 E ? ^^^ E b> 0.0056358306 E ? + ^^ E Data differs at [629, 20]: E a> 0.016101867 E b> 0.016102336 E Data differs at [941, 20]: E a> 0.009797767 E b> 0.009798015 E Data differs at [552, 23]: E a> 0.031580392 E b> 0.031581085 E Data differs at [681, 33]: E a> 0.009312123 E ? -- E b> 0.009312377 E ? ++ E Data differs at [707, 35]: E a> 0.013522971 E b> 0.013523482 E Data differs at [849, 37]: E a> 0.032711904 E b> 0.032712955 E ... E 184 different pixels found (0.00% different). E E Extension HDU 6 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1220, 32]: E a> 0.017103717 E b> 0.017103262 E Data differs at [617, 40]: E a> 0.00077723514 E ? - - E b> 0.0007774231 E ? + E Data differs at [1193, 49]: E a> 0.0016725103 E ? --- E b> 0.0016723832 E ? +++ E Data differs at [1479, 56]: E a> 0.07173308 E b> 0.07173571 E Data differs at [388, 65]: E a> 0.0078134965 E ? ^^ - E b> 0.007813306 E ? ^^ E Data differs at [1987, 80]: E a> 0.014090647 E ? -- E b> 0.014090216 E ? ++ E Data differs at [689, 94]: E a> 0.013003772 E b> 0.013004473 E Data differs at [1061, 113]: E a> 0.00065081735 E b> 0.0006509779 E Data differs at [358, 117]: E a> 0.00048274992 E b> 0.00048286832 E Data differs at [1185, 134]: E a> 0.0008182664 E b> 0.00081848237 E ... E 178 different pixels found (0.00% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484e2df6a0>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError _______________________ test_nis_wfss_spec2[extract_2d] ________________________ run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...ct_2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_extract_2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'extract_2d' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_extract_2d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_extract_2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 47 E b: 49 E Extra keyword 'SRCDEC' in b: -30.40553434784723 E Extra keyword 'SRCRA' in b: 3.592040812067641 E Keyword SLTSTRT1 has different values: E a> 1389 E ? - E b> 1390 E ? + E Keyword SLTSTRT2 has different values: E a> 1113 E ? ^ E b> 1114 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.07601866 E b> 0.09491855 E Data differs at [2, 1]: E a> 0.091159254 E b> 0.020518458 E Data differs at [3, 1]: E a> 0.063286245 E b> 0.07317534 E Data differs at [4, 1]: E a> 0.05025898 E b> 0.07113351 E Data differs at [5, 1]: E a> 0.016595162 E b> 0.075566575 E Data differs at [6, 1]: E a> 0.07393524 E b> 0.061039086 E Data differs at [7, 1]: E a> 0.06604941 E b> 0.04007152 E Data differs at [8, 1]: E a> 0.006939598 E b> 0.0797044 E Data differs at [9, 1]: E a> 0.06425873 E b> 0.057408143 E Data differs at [10, 1]: E a> 0.06636904 E b> 0.07423474 E ... E 79333 different pixels found (99.99% different). E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0 E b> 4 E Data differs at [2, 1]: E a> 0 E b> 4 E Data differs at [5, 1]: E a> 0 E b> 4 E Data differs at [16, 1]: E a> 0 E b> 4 E Data differs at [17, 1]: E a> 0 E b> 4 E Data differs at [28, 1]: E a> 0 E b> 4 E Data differs at [32, 1]: E a> 4 E b> 0 E Data differs at [44, 1]: E a> 4 E b> 0 E Data differs at [46, 1]: E a> 0 E b> 16777221 E Data differs at [48, 1]: E a> 0 E b> 4 E ... E 13727 different pixels found (17.30% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0.021101505 E b> 0.022167083 E Data differs at [2, 1]: E a> 0.021743273 E b> 0.021564962 E Data differs at [3, 1]: E a> 0.022068132 E b> 0.022213832 E Data differs at [4, 1]: E a> 0.020673273 E b> 0.021578563 E Data differs at [5, 1]: E a> 0.019631913 E b> 0.022153186 E Data differs at [6, 1]: E a> 0.021232158 E b> 0.020933269 E Data differs at [7, 1]: E a> 0.020554062 E b> 0.020602789 E Data differs at [8, 1]: E a> 0.019950496 E b> 0.02096566 E Data differs at [9, 1]: E a> 0.021507863 E b> 0.021246059 E Data differs at [10, 1]: E a> 0.021294583 E b> 0.021775313 E ... E 79315 different pixels found (99.97% different). E E Extension HDU 4 (WAVELENGTH, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [2, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [3, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [4, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [5, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [6, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [7, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [8, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [9, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [10, 1]: E a> 1.9013734 E b> 1.8966796 E ... E 79339 different pixels found (100.00% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0.00044092129 E b> 0.0004695498 E Data differs at [2, 1]: E a> 0.0004693386 E b> 0.00045110442 E Data differs at [3, 1]: E a> 0.00046863322 E b> 0.00047672258 E Data differs at [4, 1]: E a> 0.0004243046 E b> 0.0004620551 E Data differs at [5, 1]: E a> 0.00038146426 E b> 0.00048392726 E Data differs at [6, 1]: E a> 0.0004464778 E b> 0.00043413675 E Data differs at [7, 1]: E a> 0.0004173837 E b> 0.00041826177 E Data differs at [8, 1]: E a> 0.00039347596 E b> 0.00043684588 E Data differs at [9, 1]: E a> 0.00045359458 E b> 0.00044724232 E Data differs at [10, 1]: E a> 0.00044899594 E b> 0.00046903442 E ... E 79171 different pixels found (99.79% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 4.2842657e-06 E b> 2.1721587e-05 E Data differs at [2, 1]: E a> 3.3317215e-06 E b> 1.3938283e-05 E Data differs at [3, 1]: E a> 1.8322411e-05 E b> 1.6667349e-05 E Data differs at [4, 1]: E a> 3.0500287e-06 E b> 3.5189762e-06 E Data differs at [5, 1]: E a> 3.9447364e-06 E b> 6.7672145e-06 E Data differs at [6, 1]: E a> 4.2621227e-06 E b> 4.021001e-06 E Data differs at [7, 1]: E a> 5.034949e-06 E b> 6.1944747e-06 E Data differs at [8, 1]: E a> 4.545765e-06 E b> 2.6388068e-06 E Data differs at [9, 1]: E a> 8.945237e-06 E b> 4.1124395e-06 E Data differs at [10, 1]: E a> 4.4113017e-06 E b> 5.064231e-06 E ... E 75727 different pixels found (95.45% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [17, 1]: E a> 4.913979e-08 E b> 1.9260558e-07 E Data differs at [19, 1]: E a> 1.4055821e-07 E b> 1.3462205e-08 E Data differs at [20, 1]: E a> 7.747428e-09 E b> 1.1106848e-07 E Data differs at [21, 1]: E a> 1.4606553e-07 E b> 4.5921e-08 E Data differs at [45, 1]: E a> 1.017291e-08 E b> 1.1921217e-07 E Data differs at [47, 1]: E a> 9.3021155e-09 E b> 1.0938525e-07 E Data differs at [48, 1]: E a> 3.762465e-08 E b> 1.4567745e-07 E Data differs at [51, 1]: E a> 1.82091e-07 E b> 5.269996e-09 E Data differs at [55, 1]: E a> 1.7381811e-07 E b> 1.7002574e-08 E Data differs at [61, 1]: E a> 1.0950979e-07 E b> 2.4832877e-07 E ... E 50000 different pixels found (63.02% different). E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.40018067148927 E Extra keyword 'SRCRA' in b: 3.586356414491374 E Keyword SLTSTRT1 has different values: E a> 1032 E ? ^ E b> 1033 E ? ^ E Keyword SLTSTRT2 has different values: E a> 1314 E ? ^ E b> 1315 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.19990797 E b> 0.18290745 E Data differs at [2, 1]: E a> 0.23067056 E b> 0.2477534 E Data differs at [3, 1]: E a> 0.23131803 E b> 0.2964172 E Data differs at [4, 1]: E a> 0.20412807 E b> 0.2580659 E Data differs at [5, 1]: E a> 0.2401229 E b> 0.2511261 E Data differs at [6, 1]: E a> 0.23832908 E b> 0.19198704 E Data differs at [7, 1]: E a> 0.22189732 E b> 0.17562482 E Data differs at [8, 1]: E a> 0.14300282 E b> 0.17584698 E Data differs at [9, 1]: E a> 0.15427624 E b> 0.18087307 E Data differs at [10, 1]: E a> 0.20676768 E b> 0.12289692 E ... E 56770 different pixels found (100.00% different). E E Extension HDU 9 (DQ, 2): E E Data contains differences: E Data differs at [2, 1]: E a> 4 E b> 0 E Data differs at [3, 1]: E a> 4 E b> 0 E Data differs at [4, 1]: E a> 4 E b> 0 E Data differs at [12, 1]: E a> 0 E b> 4 E Data differs at [13, 1]: E a> 0 E b> 4 E Data differs at [15, 1]: E a> 4 E b> 8388613 E Data differs at [18, 1]: E a> 16779265 E b> 0 E Data differs at [20, 1]: E a> 0 E b> 35914753 E Data differs at [46, 1]: E a> 4 E b> 0 E Data differs at [47, 1]: E a> 4 E b> 0 E ... E 9676 different pixels found (17.04% different). E E Extension HDU 10 (ERR, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 0.0224017 E b> 0.023020292 E Data differs at [2, 1]: E a> 0.024187082 E b> 0.023029739 E Data differs at [3, 1]: E a> 0.02411214 E b> 0.023737837 E Data differs at [4, 1]: E a> 0.023702415 E b> 0.023137512 E Data differs at [5, 1]: E a> 0.023448238 E b> 0.023216644 E Data differs at [6, 1]: E a> 0.023274248 E b> 0.02180982 E Data differs at [7, 1]: E a> 0.023105526 E b> 0.022139112 E Data differs at [8, 1]: E a> 0.021588627 E b> 0.021680543 E Data differs at [9, 1]: E a> 0.020922955 E b> 0.02214974 E Data differs at [10, 1]: E a> 0.0227876 E b> 0.021650355 E ... E 56758 different pixels found (99.98% different). E E Extension HDU 11 (WAVELENGTH, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [2, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [3, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [4, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [5, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [6, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [7, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [8, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [9, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [10, 1]: E a> 1.7154493 E b> 1.7107556 E ... E 56772 different pixels found (100.00% different). E E Extension HDU 12 (VAR_POISSON, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 0.0004967198 E b> 0.0005257822 E Data differs at [2, 1]: E a> 0.0005659332 E b> 0.0005248566 E Data differs at [3, 1]: E a> 0.0005600677 E b> 0.0005520634 E Data differs at [4, 1]: E a> 0.00052954094 E b> 0.0005299283 E Data differs at [5, 1]: E a> 0.00054649735 E b> 0.0005338184 E Data differs at [6, 1]: E a> 0.00053486385 E b> 0.00047162746 E Data differs at [7, 1]: E a> 0.0005210768 E b> 0.00048540108 E Data differs at [8, 1]: E a> 0.00046242232 E b> 0.00046590794 E Data differs at [9, 1]: E a> 0.00043405924 E b> 0.00048541123 E Data differs at [10, 1]: E a> 0.0005143815 E b> 0.00046457764 E ... E 56658 different pixels found (99.80% different). E E Extension HDU 13 (VAR_RNOISE, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 4.665698e-06 E b> 3.7364505e-06 E Data differs at [2, 1]: E a> 1.8443272e-05 E b> 4.801762e-06 E Data differs at [3, 1]: E a> 2.0702795e-05 E b> 1.0406416e-05 E Data differs at [4, 1]: E a> 3.1765037e-05 E b> 4.660997e-06 E Data differs at [5, 1]: E a> 2.6672885e-06 E b> 4.456551e-06 E Data differs at [6, 1]: E a> 6.1673345e-06 E b> 3.636675e-06 E Data differs at [7, 1]: E a> 1.2237247e-05 E b> 4.381598e-06 E Data differs at [8, 1]: E a> 3.4235275e-06 E b> 3.815099e-06 E Data differs at [9, 1]: E a> 3.4832394e-06 E b> 4.8139077e-06 E Data differs at [10, 1]: E a> 4.3654472e-06 E b> 3.9951915e-06 E ... E 54296 different pixels found (95.64% different). E E Extension HDU 14 (VAR_FLAT, 2): E E Data contains differences: E Data differs at [3, 1]: E a> 6.248351e-07 E b> 1.0150636e-06 E Data differs at [4, 1]: E a> 4.9849564e-07 E b> 7.5511593e-07 E Data differs at [6, 1]: E a> 6.594963e-07 E b> 4.0410734e-07 E Data differs at [7, 1]: E a> 5.5132745e-07 E b> 3.5759572e-07 E Data differs at [8, 1]: E a> 2.2292639e-07 E ? ^ ^ ^ E b> 3.2294636e-07 E ? ^ ^ ^ E Data differs at [9, 1]: E a> 2.2759919e-07 E b> 3.858297e-07 E Data differs at [10, 1]: E a> 5.277661e-07 E b> 1.6503091e-07 E Data differs at [11, 1]: E a> 4.2515765e-07 E b> 6.758743e-07 E Data differs at [12, 1]: E a> 4.9715146e-07 E b> 7.964099e-07 E Data differs at [13, 1]: E a> 6.500649e-07 E b> 4.54274e-07 E ... E 42339 different pixels found (74.58% different). E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.39411309485647 E Extra keyword 'SRCRA' in b: 3.585624631060788 E Keyword NAXIS2 has different values: E a> 321 E b> 322 E Keyword SLTSIZE1 has different values: E a> 181 E b> 183 E Keyword SLTSIZE2 has different values: E a> 321 E b> 322 E Keyword SLTSTRT2 has different values: E a> 1177 E ? ^ E b> 1178 E ? ^ E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 16 (DQ, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 17 (ERR, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 18 (WAVELENGTH, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 19 (VAR_POISSON, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 20 (VAR_RNOISE, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 21 (VAR_FLAT, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.39163095906152 E Extra keyword 'SRCRA' in b: 3.59464814053007 E Keyword NAXIS2 has different values: E a> 228 E b> 229 E Keyword SLTSIZE1 has different values: E a> 197 E b> 199 E Keyword SLTSIZE2 has different values: E a> 228 E b> 229 E Keyword SLTSTRT2 has different values: E a> 801 E b> 802 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 29 (SCI, 5): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.39602892937478 E Extra keyword 'SRCRA' in b: 3.58789771169632 E Keyword NAXIS2 has different values: E a> 203 E b> 205 E Keyword SLTSIZE2 has different values: E a> 203 E b> 205 E Keyword SLTSTRT1 has different values: E a> 857 E b> 858 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 30 (DQ, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 31 (ERR, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 32 (WAVELENGTH, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 33 (VAR_POISSON, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 34 (VAR_RNOISE, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 35 (VAR_FLAT, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 36 (SCI, 6): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSIZE1 has different values: E a> 133 E b> 134 E Keyword SLTSTRT2 has different values: E a> 217 E b> 218 E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 37 (DQ, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 38 (ERR, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 39 (WAVELENGTH, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 40 (VAR_POISSON, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 41 (VAR_RNOISE, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 42 (VAR_FLAT, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 43 (SCI, 7): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.40926138863649 E Extra keyword 'SRCRA' in b: 3.579587921874186 E Keyword NAXIS2 has different values: E a> 209 E b> 211 E Keyword SLTSIZE1 has different values: E a> 117 E b> 119 E Keyword SLTSIZE2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 44 (DQ, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 45 (ERR, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 46 (WAVELENGTH, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 47 (VAR_POISSON, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 48 (VAR_RNOISE, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 49 (VAR_FLAT, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 50 (SCI, 8): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.38980139908971 E Extra keyword 'SRCRA' in b: 3.600004699000835 E Keyword NAXIS2 has different values: E a> 236 E b> 237 E Keyword SLTSIZE1 has different values: E a> 10 E b> 11 E Keyword SLTSIZE2 has different values: E a> 236 E b> 237 E Keyword SLTSTRT2 has different values: E a> 521 E b> 522 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 51 (DQ, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 52 (ERR, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 53 (WAVELENGTH, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 54 (VAR_POISSON, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 55 (VAR_RNOISE, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 56 (VAR_FLAT, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 57 (SCI, 9): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.3860237133523 E Extra keyword 'SRCRA' in b: 3.569829752935783 E Keyword SLTSTRT1 has different values: E a> 25 E b> 26 E Keyword SLTSTRT2 has different values: E a> 1791 E ? ^ E b> 1792 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.018300496 E b> 0.04914401 E Data differs at [2, 1]: E a> 0.07292115 E b> 0.03709803 E Data differs at [3, 1]: E a> 0.006714215 E b> 0.045797363 E Data differs at [4, 1]: E a> 0.057412837 E b> 0.030214189 E Data differs at [5, 1]: E a> 0.05260742 E b> 0.002094747 E Data differs at [6, 1]: E a> 0.013841207 E b> 0.07073075 E Data differs at [7, 1]: E a> 0.06833076 E b> 0.07115308 E Data differs at [8, 1]: E a> 0.04218341 E b> 0.047660735 E Data differs at [9, 1]: E a> 0.027864996 E b> 0.042478852 E Data differs at [10, 1]: E a> 0.059238214 E b> 0.044986747 E ... E 55174 different pixels found (100.00% different). E E Extension HDU 58 (DQ, 9): E E Data contains differences: E Data differs at [15, 1]: E a> 0 E b> 4 E Data differs at [16, 1]: E a> 0 E b> 4 E Data differs at [20, 1]: E a> 0 E b> 4 E Data differs at [21, 1]: E a> 0 E b> 4 E Data differs at [28, 1]: E a> 0 E b> 4 E Data differs at [32, 1]: E a> 4 E b> 0 E Data differs at [67, 1]: E a> 0 E b> 4 E Data differs at [68, 1]: E a> 0 E b> 4 E Data differs at [70, 1]: E a> 4 E b> 0 E Data differs at [71, 1]: E a> 4 E b> 0 E ... E 8836 different pixels found (16.01% different). E E Extension HDU 59 (ERR, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 0.01982531 E b> 0.019883042 E Data differs at [2, 1]: E a> 0.020379202 E b> 0.020768518 E Data differs at [3, 1]: E a> 0.01980809 E b> 0.0201421 E Data differs at [4, 1]: E a> 0.020428026 E b> 0.019892808 E Data differs at [5, 1]: E a> 0.020475939 E b> 0.019547174 E Data differs at [6, 1]: E a> 0.019923387 E b> 0.02070914 E Data differs at [7, 1]: E a> 0.020515747 E b> 0.020945193 E Data differs at [8, 1]: E a> 0.01992046 E b> 0.02074254 E Data differs at [9, 1]: E a> 0.0195891 E b> 0.020285513 E Data differs at [10, 1]: E a> 0.020573577 E b> 0.019876871 E ... E 55167 different pixels found (99.98% different). E E Extension HDU 60 (WAVELENGTH, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [2, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [3, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [4, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [5, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [6, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [7, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [8, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [9, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [10, 1]: E a> 1.7922435 E b> 1.7875497 E ... E 55176 different pixels found (100.00% different). E E Extension HDU 61 (VAR_POISSON, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 0.00038881451 E b> 0.00039086334 E Data differs at [2, 1]: E a> 0.0004118398 E b> 0.00042644018 E Data differs at [3, 1]: E a> 0.00038849132 E b> 0.00040312088 E Data differs at [4, 1]: E a> 0.00041337454 E b> 0.00039108226 E Data differs at [5, 1]: E a> 0.00041502528 E b> 0.0003768711 E Data differs at [6, 1]: E a> 0.00039139003 E b> 0.0004251499 E Data differs at [7, 1]: E a> 0.00041772542 E b> 0.00043529167 E Data differs at [8, 1]: E a> 0.00039268463 E b> 0.00042584812 E Data differs at [9, 1]: E a> 0.00037906787 E b> 0.00040800878 E Data differs at [10, 1]: E a> 0.00041859446 E b> 0.0003918399 E ... E 55032 different pixels found (99.74% different). E E Extension HDU 62 (VAR_RNOISE, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 4.224553e-06 E b> 4.444852e-06 E Data differs at [2, 1]: E a> 3.4088628e-06 E b> 4.874177e-06 E Data differs at [3, 1]: E a> 3.868535e-06 E b> 2.5592135e-06 E Data differs at [4, 1]: E a> 3.8915937e-06 E b> 4.6309597e-06 E Data differs at [5, 1]: E a> 4.2061934e-06 E b> 5.220881e-06 E Data differs at [6, 1]: E a> 5.549274e-06 E b> 3.6613828e-06 E Data differs at [7, 1]: E a> 3.116495e-06 E b> 3.3503884e-06 E Data differs at [8, 1]: E a> 4.1193985e-06 E b> 4.377403e-06 E Data differs at [9, 1]: E a> 4.656189e-06 E b> 3.4719258e-06 E Data differs at [10, 1]: E a> 4.6361974e-06 E b> 3.2270991e-06 E ... E 52507 different pixels found (95.16% different). E E Extension HDU 63 (VAR_FLAT, 9): E E Data contains differences: E Data differs at [113, 1]: E a> 1.4214218e-07 E b> 1.9844174e-08 E Data differs at [119, 1]: E a> 2.5894991e-08 E b> 1.5745938e-07 E Data differs at [122, 1]: E a> 2.652957e-07 E b> 1.3733384e-07 E Data differs at [123, 1]: E a> 3.9400356e-07 E b> 1.0309822e-07 E Data differs at [125, 1]: E a> 4.227829e-07 E ? ^ - E b> 3.2127582e-07 E ? ^ + + E Data differs at [127, 1]: E a> 5.5986595e-07 E b> 6.782127e-07 E Data differs at [128, 1]: E a> 7.1790396e-07 E b> 1.0329828e-06 E Data differs at [130, 1]: E a> 1.4445675e-06 E b> 9.4824804e-07 E Data differs at [131, 1]: E a> 1.9395357e-06 E b> 0.0 E Data differs at [132, 1]: E a> 2.1240514e-06 E b> 1.7619503e-06 E ... E 10858 different pixels found (19.68% different). E E Extension HDU 64 (SCI, 10): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 65 (DQ, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 66 (ERR, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 67 (WAVELENGTH, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 68 (VAR_POISSON, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 69 (VAR_RNOISE, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 70 (VAR_FLAT, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f490555a280>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError _______________________ test_nis_wfss_spec2[flat_field] ________________________ run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...field.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_flat_field.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'flat_field' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_flat_field.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_flat_field.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [5, 5]: E a> 0.82082546 E b> 0.82067204 E Data differs at [6, 5]: E a> 0.089759365 E b> 0.08975724 E Data differs at [7, 5]: E a> 1.203846 E b> 1.2038013 E Data differs at [8, 5]: E a> -0.17252588 E b> -0.17267835 E Data differs at [9, 5]: E a> -0.060819507 E b> -0.06097293 E Data differs at [10, 5]: E a> -0.06569576 E b> -0.065849185 E Data differs at [11, 5]: E a> -0.083259344 E b> -0.083412886 E Data differs at [12, 5]: E a> -0.038711846 E b> -0.03883761 E Data differs at [13, 5]: E a> -0.15667588 E b> -0.15680462 E Data differs at [14, 5]: E a> 0.027448654 E b> 0.027335584 E ... E 4155773 different pixels found (99.08% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [2033, 9]: E a> 0.036478918 E ? ^^ E b> 0.036478393 E ? + ^ E Data differs at [42, 11]: E a> 0.006089169 E b> 0.0060893754 E Data differs at [651, 11]: E a> 0.0034585034 E ? ^^^ E b> 0.0034587567 E ? + ^^ E Data differs at [1230, 11]: E a> 0.0034741005 E b> 0.0034743794 E Data differs at [629, 20]: E a> 0.009926487 E ? -- E b> 0.0099267755 E ? +++ E Data differs at [552, 23]: E a> 0.019468695 E ? -- E b> 0.019469125 E ? ++ E Data differs at [707, 35]: E a> 0.008336648 E ? ^^ E b> 0.008336963 E ? + ^ E Data differs at [849, 37]: E a> 0.02016625 E ? ^^ E b> 0.020166898 E ? ^^^ E Data differs at [1483, 42]: E a> 0.022238541 E ? ^ -- E b> 0.02223905 E ? ^^ E Data differs at [271, 45]: E a> 0.0053882445 E ? - ^^ E b> 0.005388409 E ? ^^ E ... E 160 different pixels found (0.00% different). E E Extension HDU 6 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1220, 32]: E a> 0.006500237 E b> 0.006500064 E Data differs at [1479, 56]: E a> 0.027262028 E ? ^ ^ E b> 0.027263029 E ? ^ ^ E Data differs at [1987, 80]: E a> 0.0053551253 E b> 0.0053549614 E Data differs at [689, 94]: E a> 0.0049420604 E b> 0.004942327 E Data differs at [680, 168]: E a> 0.0013128986 E ? - ^^ E b> 0.0013130297 E ? ++ ^ E Data differs at [1517, 173]: E a> 0.014913986 E ? ^^ E b> 0.014913297 E ? + ^ E Data differs at [623, 328]: E a> 0.0016168883 E ? --- E b> 0.0016167508 E ? +++ E Data differs at [1799, 351]: E a> 0.0008528466 E ? ^^ E b> 0.0008527066 E ? ^^ E Data differs at [1089, 368]: E a> 0.03408712 E b> 0.034086086 E Data differs at [272, 417]: E a> 0.07086145 E ? ^^ E b> 0.07086056 E ? ^ + E ... E 46 different pixels found (0.00% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484d0895b0>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError _________________________ test_nis_wfss_spec2[photom] __________________________ run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...is_photom.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_photom.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'photom' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_photom.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_photom.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 54 E b: 56 E Extra keyword 'SRCDEC' in b: -30.40553434784723 E Extra keyword 'SRCRA' in b: 3.592040812067641 E Keyword SLTSTRT1 has different values: E a> 1389 E ? - E b> 1390 E ? + E Keyword SLTSTRT2 has different values: E a> 1113 E ? ^ E b> 1114 E ? ^ E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 1363.4772 E Data differs at [2, 125]: E a> 0.0 E b> 1314.6934 E Data differs at [3, 125]: E a> 0.0 E b> 1513.2789 E Data differs at [4, 125]: E a> 0.0 E b> 1438.8994 E Data differs at [5, 125]: E a> 0.0 E b> 1932.6174 E Data differs at [6, 125]: E a> 0.0 E b> 1949.8593 E Data differs at [7, 125]: E a> 0.0 E b> 2132.382 E Data differs at [8, 125]: E a> 0.0 E b> 1579.2274 E Data differs at [9, 125]: E a> 0.0 E b> 1932.2921 E Data differs at [10, 125]: E a> 0.0 E b> 1362.5513 E ... E 15249 different pixels found (19.22% different). E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1 E b> 5 E Data differs at [2, 1]: E a> 1 E b> 5 E Data differs at [5, 1]: E a> 1 E b> 5 E Data differs at [16, 1]: E a> 1 E b> 5 E Data differs at [17, 1]: E a> 1 E b> 5 E Data differs at [28, 1]: E a> 1 E b> 5 E Data differs at [32, 1]: E a> 5 E b> 1 E Data differs at [44, 1]: E a> 5 E b> 1 E Data differs at [46, 1]: E a> 1 E b> 16777221 E Data differs at [48, 1]: E a> 1 E b> 5 E ... E 13566 different pixels found (17.10% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 191.5967 E Data differs at [2, 125]: E a> 0.0 E b> 186.99792 E Data differs at [3, 125]: E a> 0.0 E b> 190.20242 E Data differs at [4, 125]: E a> 0.0 E b> 188.07532 E Data differs at [5, 125]: E a> 0.0 E b> 192.07884 E Data differs at [6, 125]: E a> 0.0 E b> 199.28291 E Data differs at [7, 125]: E a> 0.0 E b> 197.129 E Data differs at [8, 125]: E a> 0.0 E b> 191.76932 E Data differs at [9, 125]: E a> 0.0 E b> 192.68011 E Data differs at [10, 125]: E a> 0.0 E b> 192.26921 E ... E 15246 different pixels found (19.22% different). E E Extension HDU 4 (WAVELENGTH, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [2, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [3, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [4, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [5, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [6, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [7, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [8, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [9, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [10, 1]: E a> 1.9013734 E b> 1.8966796 E ... E 79339 different pixels found (100.00% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 36424.82 E Data differs at [2, 125]: E a> 0.0 E b> 34599.67 E Data differs at [3, 125]: E a> 0.0 E b> 35775.6 E Data differs at [4, 125]: E a> 0.0 E b> 35013.43 E Data differs at [5, 125]: E a> 0.0 E b> 36640.895 E Data differs at [6, 125]: E a> 0.0 E b> 39414.37 E Data differs at [7, 125]: E a> 0.0 E b> 38401.395 E Data differs at [8, 125]: E a> 0.0 E b> 36373.76 E Data differs at [9, 125]: E a> 0.0 E b> 36752.85 E Data differs at [10, 125]: E a> 0.0 E b> 36637.6 E ... E 15248 different pixels found (19.22% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 261.33878 E Data differs at [2, 125]: E a> 0.0 E b> 348.2399 E Data differs at [3, 125]: E a> 0.0 E b> 372.7315 E Data differs at [4, 125]: E a> 0.0 E b> 334.8433 E Data differs at [5, 125]: E a> 0.0 E b> 208.7587 E Data differs at [6, 125]: E a> 0.0 E b> 254.74019 E Data differs at [7, 125]: E a> 0.0 E b> 404.5371 E Data differs at [8, 125]: E a> 0.0 E b> 372.12772 E Data differs at [9, 125]: E a> 0.0 E b> 327.5682 E Data differs at [10, 125]: E a> 0.0 E b> 307.2687 E ... E 15247 different pixels found (19.22% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 23.128403 E Data differs at [2, 125]: E a> 0.0 E b> 20.311348 E Data differs at [3, 125]: E a> 0.0 E b> 28.629303 E Data differs at [4, 125]: E a> 0.0 E b> 24.053085 E Data differs at [5, 125]: E a> 0.0 E b> 44.628468 E Data differs at [6, 125]: E a> 0.0 E b> 44.564407 E Data differs at [7, 125]: E a> 0.0 E b> 53.908096 E Data differs at [8, 125]: E a> 0.0 E b> 29.58187 E Data differs at [9, 125]: E a> 0.0 E b> 45.20958 E Data differs at [10, 125]: E a> 0.0 E b> 22.578938 E ... E 15245 different pixels found (19.22% different). E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.40018067148927 E Extra keyword 'SRCRA' in b: 3.586356414491374 E Keyword SLTSTRT1 has different values: E a> 1032 E ? ^ E b> 1033 E ? ^ E Keyword SLTSTRT2 has different values: E a> 1314 E ? ^ E b> 1315 E ? ^ E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 3985.8796 E Data differs at [2, 85]: E a> 0.0 E b> 4118.5845 E Data differs at [3, 85]: E a> 0.0 E b> -58.99588 E Data differs at [4, 85]: E a> 0.0 E b> 4555.2866 E Data differs at [5, 85]: E a> 0.0 E b> 5155.0547 E Data differs at [6, 85]: E a> 0.0 E b> 4215.951 E Data differs at [7, 85]: E a> 0.0 E b> 4324.001 E Data differs at [8, 85]: E a> 0.0 E b> 4124.1924 E Data differs at [9, 85]: E a> 0.0 E b> 3861.4543 E Data differs at [10, 85]: E a> 0.0 E b> 4730.775 E ... E 15957 different pixels found (28.11% different). E E Extension HDU 9 (DQ, 2): E E Data contains differences: E Data differs at [2, 1]: E a> 5 E b> 1 E Data differs at [3, 1]: E a> 5 E b> 1 E Data differs at [4, 1]: E a> 5 E b> 1 E Data differs at [12, 1]: E a> 1 E b> 5 E Data differs at [13, 1]: E a> 1 E b> 5 E Data differs at [15, 1]: E a> 5 E b> 8388613 E Data differs at [18, 1]: E a> 16779265 E b> 1 E Data differs at [20, 1]: E a> 1 E b> 35914753 E Data differs at [46, 1]: E a> 5 E b> 1 E Data differs at [47, 1]: E a> 5 E b> 1 E ... E 9663 different pixels found (17.02% different). E E Extension HDU 10 (ERR, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 300.3294 E Data differs at [2, 85]: E a> 0.0 E b> 280.55493 E Data differs at [3, 85]: E a> 0.0 E b> 85.338104 E Data differs at [4, 85]: E a> 0.0 E b> 275.2996 E Data differs at [5, 85]: E a> 0.0 E b> 305.31372 E Data differs at [6, 85]: E a> 0.0 E b> 287.1998 E Data differs at [7, 85]: E a> 0.0 E b> 280.49844 E Data differs at [8, 85]: E a> 0.0 E b> 278.29352 E Data differs at [9, 85]: E a> 0.0 E b> 285.17935 E Data differs at [10, 85]: E a> 0.0 E b> 288.2807 E ... E 15958 different pixels found (28.11% different). E E Extension HDU 11 (WAVELENGTH, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [2, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [3, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [4, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [5, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [6, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [7, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [8, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [9, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [10, 1]: E a> 1.7154493 E b> 1.7107556 E ... E 56772 different pixels found (100.00% different). E E Extension HDU 12 (VAR_POISSON, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 88679.945 E Data differs at [2, 85]: E a> 0.0 E b> 78039.22 E Data differs at [3, 85]: E a> 0.0 E b> 2036.2072 E Data differs at [4, 85]: E a> 0.0 E b> 75026.336 E Data differs at [5, 85]: E a> 0.0 E b> 92242.55 E Data differs at [6, 85]: E a> 0.0 E b> 81677.06 E Data differs at [7, 85]: E a> 0.0 E b> 77789.305 E Data differs at [8, 85]: E a> 0.0 E b> 76522.234 E Data differs at [9, 85]: E a> 0.0 E b> 80232.84 E Data differs at [10, 85]: E a> 0.0 E b> 82342.11 E ... E 15950 different pixels found (28.09% different). E E Extension HDU 13 (VAR_RNOISE, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 1324.0547 E Data differs at [2, 85]: E a> 0.0 E b> 479.76517 E Data differs at [3, 85]: E a> 0.0 E b> 5246.3857 E Data differs at [4, 85]: E a> 0.0 E b> 524.931 E Data differs at [5, 85]: E a> 0.0 E b> 642.7656 E Data differs at [6, 85]: E a> 0.0 E b> 598.9909 E Data differs at [7, 85]: E a> 0.0 E b> 667.98175 E Data differs at [8, 85]: E a> 0.0 E b> 725.91876 E Data differs at [9, 85]: E a> 0.0 E b> 904.42816 E Data differs at [10, 85]: E a> 0.0 E b> 503.98715 E ... E 15959 different pixels found (28.11% different). E E Extension HDU 14 (VAR_FLAT, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 193.7494 E Data differs at [2, 85]: E a> 0.0 E b> 192.08748 E Data differs at [4, 85]: E a> 0.0 E b> 238.59854 E Data differs at [5, 85]: E a> 0.0 E b> 331.16757 E Data differs at [6, 85]: E a> 0.0 E b> 207.66754 E Data differs at [7, 85]: E a> 0.0 E b> 222.09827 E Data differs at [8, 85]: E a> 0.0 E b> 199.12457 E Data differs at [9, 85]: E a> 0.0 E b> 189.98973 E Data differs at [10, 85]: E a> 0.0 E b> 259.66467 E Data differs at [11, 85]: E a> 0.0 E b> 166.92542 E ... E 15957 different pixels found (28.11% different). E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.39411309485647 E Extra keyword 'SRCRA' in b: 3.585624631060788 E Keyword NAXIS2 has different values: E a> 321 E b> 322 E Keyword SLTSIZE1 has different values: E a> 181 E b> 183 E Keyword SLTSIZE2 has different values: E a> 321 E b> 322 E Keyword SLTSTRT2 has different values: E a> 1177 E ? ^ E b> 1178 E ? ^ E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 16 (DQ, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 17 (ERR, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 18 (WAVELENGTH, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 19 (VAR_POISSON, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 20 (VAR_RNOISE, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 21 (VAR_FLAT, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.39163095906152 E Extra keyword 'SRCRA' in b: 3.59464814053007 E Keyword NAXIS2 has different values: E a> 228 E b> 229 E Keyword SLTSIZE1 has different values: E a> 197 E b> 199 E Keyword SLTSIZE2 has different values: E a> 228 E b> 229 E Keyword SLTSTRT2 has different values: E a> 801 E b> 802 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 29 (SCI, 5): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.39602892937478 E Extra keyword 'SRCRA' in b: 3.58789771169632 E Keyword NAXIS2 has different values: E a> 203 E b> 205 E Keyword SLTSIZE2 has different values: E a> 203 E b> 205 E Keyword SLTSTRT1 has different values: E a> 857 E b> 858 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 30 (DQ, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 31 (ERR, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 32 (WAVELENGTH, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 33 (VAR_POISSON, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 34 (VAR_RNOISE, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 35 (VAR_FLAT, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 36 (SCI, 6): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSIZE1 has different values: E a> 133 E b> 134 E Keyword SLTSTRT2 has different values: E a> 217 E b> 218 E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 37 (DQ, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 38 (ERR, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 39 (WAVELENGTH, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 40 (VAR_POISSON, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 41 (VAR_RNOISE, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 42 (VAR_FLAT, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 43 (SCI, 7): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.40926138863649 E Extra keyword 'SRCRA' in b: 3.579587921874186 E Keyword NAXIS2 has different values: E a> 209 E b> 211 E Keyword SLTSIZE1 has different values: E a> 117 E b> 119 E Keyword SLTSIZE2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 44 (DQ, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 45 (ERR, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 46 (WAVELENGTH, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 47 (VAR_POISSON, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 48 (VAR_RNOISE, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 49 (VAR_FLAT, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 50 (SCI, 8): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.38980139908971 E Extra keyword 'SRCRA' in b: 3.600004699000835 E Keyword NAXIS2 has different values: E a> 236 E b> 237 E Keyword SLTSIZE1 has different values: E a> 10 E b> 11 E Keyword SLTSIZE2 has different values: E a> 236 E b> 237 E Keyword SLTSTRT2 has different values: E a> 521 E b> 522 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 51 (DQ, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 52 (ERR, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 53 (WAVELENGTH, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 54 (VAR_POISSON, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 55 (VAR_RNOISE, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 56 (VAR_FLAT, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 57 (SCI, 9): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.3860237133523 E Extra keyword 'SRCRA' in b: 3.569829752935783 E Keyword SLTSTRT1 has different values: E a> 25 E b> 26 E Keyword SLTSTRT2 has different values: E a> 1791 E ? ^ E b> 1792 E ? ^ E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 566.4476 E Data differs at [2, 102]: E a> 0.0 E b> 338.4689 E Data differs at [3, 102]: E a> 0.0 E b> 159.03731 E Data differs at [4, 102]: E a> 0.0 E b> 145.91112 E Data differs at [5, 102]: E a> 0.0 E b> 305.26697 E Data differs at [6, 102]: E a> 0.0 E b> 195.4081 E Data differs at [7, 102]: E a> 0.0 E b> 491.52173 E Data differs at [8, 102]: E a> 0.0 E b> 190.26485 E Data differs at [9, 102]: E a> 0.0 E b> 597.8491 E Data differs at [10, 102]: E a> 0.0 E b> 1145.7515 E ... E 15732 different pixels found (28.51% different). E E Extension HDU 58 (DQ, 9): E E Data contains differences: E Data differs at [15, 1]: E a> 1 E b> 5 E Data differs at [16, 1]: E a> 1 E b> 5 E Data differs at [20, 1]: E a> 1 E b> 5 E Data differs at [21, 1]: E a> 1 E b> 5 E Data differs at [28, 1]: E a> 1 E b> 5 E Data differs at [32, 1]: E a> 5 E b> 1 E Data differs at [67, 1]: E a> 1 E b> 5 E Data differs at [68, 1]: E a> 1 E b> 5 E Data differs at [70, 1]: E a> 5 E b> 1 E Data differs at [71, 1]: E a> 5 E b> 1 E ... E 8873 different pixels found (16.08% different). E E Extension HDU 59 (ERR, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 152.93675 E Data differs at [2, 102]: E a> 0.0 E b> 148.28142 E Data differs at [3, 102]: E a> 0.0 E b> 146.94443 E Data differs at [4, 102]: E a> 0.0 E b> 134.35672 E Data differs at [5, 102]: E a> 0.0 E b> 141.13506 E Data differs at [6, 102]: E a> 0.0 E b> 136.90057 E Data differs at [7, 102]: E a> 0.0 E b> 144.3461 E Data differs at [8, 102]: E a> 0.0 E b> 134.80638 E Data differs at [9, 102]: E a> 0.0 E b> 141.16875 E Data differs at [10, 102]: E a> 0.0 E b> 148.1953 E ... E 15729 different pixels found (28.51% different). E E Extension HDU 60 (WAVELENGTH, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [2, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [3, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [4, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [5, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [6, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [7, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [8, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [9, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [10, 1]: E a> 1.7922435 E b> 1.7875497 E ... E 55176 different pixels found (100.00% different). E E Extension HDU 61 (VAR_POISSON, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 22543.514 E Data differs at [2, 102]: E a> 0.0 E b> 21227.89 E Data differs at [3, 102]: E a> 0.0 E b> 20556.422 E Data differs at [4, 102]: E a> 0.0 E b> 17923.559 E Data differs at [5, 102]: E a> 0.0 E b> 19693.129 E Data differs at [6, 102]: E a> 0.0 E b> 18591.36 E Data differs at [7, 102]: E a> 0.0 E b> 20624.27 E Data differs at [8, 102]: E a> 0.0 E b> 17996.79 E Data differs at [9, 102]: E a> 0.0 E b> 19779.443 E Data differs at [10, 102]: E a> 0.0 E b> 21791.436 E ... E 15731 different pixels found (28.51% different). E E Extension HDU 62 (VAR_RNOISE, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 842.26373 E Data differs at [2, 102]: E a> 0.0 E b> 758.1521 E Data differs at [3, 102]: E a> 0.0 E b> 1035.9584 E Data differs at [4, 102]: E a> 0.0 E b> 127.92964 E Data differs at [5, 102]: E a> 0.0 E b> 224.8679 E Data differs at [6, 102]: E a> 0.0 E b> 149.96489 E Data differs at [7, 102]: E a> 0.0 E b> 208.6493 E Data differs at [8, 102]: E a> 0.0 E b> 175.55556 E Data differs at [9, 102]: E a> 0.0 E b> 145.00322 E Data differs at [10, 102]: E a> 0.0 E b> 154.8307 E ... E 15730 different pixels found (28.51% different). E E Extension HDU 63 (VAR_FLAT, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 3.8734808 E Data differs at [2, 102]: E a> 0.0 E b> 1.3375401 E Data differs at [3, 102]: E a> 0.0 E b> 0.28612608 E Data differs at [4, 102]: E a> 0.0 E b> 0.23972379 E Data differs at [5, 102]: E a> 0.0 E b> 1.1103776 E Data differs at [6, 102]: E a> 0.0 E b> 0.44549134 E Data differs at [7, 102]: E a> 0.0 E b> 2.8770452 E Data differs at [8, 102]: E a> 0.0 E b> 0.4184726 E Data differs at [9, 102]: E a> 0.0 E b> 4.171244 E Data differs at [10, 102]: E a> 0.0 E b> 15.577756 E ... E 15666 different pixels found (28.39% different). E E Extension HDU 64 (SCI, 10): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 65 (DQ, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 66 (ERR, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 67 (WAVELENGTH, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 68 (VAR_POISSON, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 69 (VAR_RNOISE, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 70 (VAR_FLAT, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484cca2490>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError _________________________ test_nis_wfss_spec2[srctype] _________________________ run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt..._srctype.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_srctype.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'srctype' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_srctype.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_srctype.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 48 E b: 50 E Extra keyword 'SRCDEC' in b: -30.40553434784723 E Extra keyword 'SRCRA' in b: 3.592040812067641 E Keyword SLTSTRT1 has different values: E a> 1389 E ? - E b> 1390 E ? + E Keyword SLTSTRT2 has different values: E a> 1113 E ? ^ E b> 1114 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.07601866 E b> 0.09491855 E Data differs at [2, 1]: E a> 0.091159254 E b> 0.020518458 E Data differs at [3, 1]: E a> 0.063286245 E b> 0.07317534 E Data differs at [4, 1]: E a> 0.05025898 E b> 0.07113351 E Data differs at [5, 1]: E a> 0.016595162 E b> 0.075566575 E Data differs at [6, 1]: E a> 0.07393524 E b> 0.061039086 E Data differs at [7, 1]: E a> 0.06604941 E b> 0.04007152 E Data differs at [8, 1]: E a> 0.006939598 E b> 0.0797044 E Data differs at [9, 1]: E a> 0.06425873 E b> 0.057408143 E Data differs at [10, 1]: E a> 0.06636904 E b> 0.07423474 E ... E 79333 different pixels found (99.99% different). E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0 E b> 4 E Data differs at [2, 1]: E a> 0 E b> 4 E Data differs at [5, 1]: E a> 0 E b> 4 E Data differs at [16, 1]: E a> 0 E b> 4 E Data differs at [17, 1]: E a> 0 E b> 4 E Data differs at [28, 1]: E a> 0 E b> 4 E Data differs at [32, 1]: E a> 4 E b> 0 E Data differs at [44, 1]: E a> 4 E b> 0 E Data differs at [46, 1]: E a> 0 E b> 16777221 E Data differs at [48, 1]: E a> 0 E b> 4 E ... E 13727 different pixels found (17.30% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0.021101505 E b> 0.022167083 E Data differs at [2, 1]: E a> 0.021743273 E b> 0.021564962 E Data differs at [3, 1]: E a> 0.022068132 E b> 0.022213832 E Data differs at [4, 1]: E a> 0.020673273 E b> 0.021578563 E Data differs at [5, 1]: E a> 0.019631913 E b> 0.022153186 E Data differs at [6, 1]: E a> 0.021232158 E b> 0.020933269 E Data differs at [7, 1]: E a> 0.020554062 E b> 0.020602789 E Data differs at [8, 1]: E a> 0.019950496 E b> 0.02096566 E Data differs at [9, 1]: E a> 0.021507863 E b> 0.021246059 E Data differs at [10, 1]: E a> 0.021294583 E b> 0.021775313 E ... E 79315 different pixels found (99.97% different). E E Extension HDU 4 (WAVELENGTH, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [2, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [3, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [4, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [5, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [6, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [7, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [8, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [9, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [10, 1]: E a> 1.9013734 E b> 1.8966796 E ... E 79339 different pixels found (100.00% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0.00044092129 E b> 0.0004695498 E Data differs at [2, 1]: E a> 0.0004693386 E b> 0.00045110442 E Data differs at [3, 1]: E a> 0.00046863322 E b> 0.00047672258 E Data differs at [4, 1]: E a> 0.0004243046 E b> 0.0004620551 E Data differs at [5, 1]: E a> 0.00038146426 E b> 0.00048392726 E Data differs at [6, 1]: E a> 0.0004464778 E b> 0.00043413675 E Data differs at [7, 1]: E a> 0.0004173837 E b> 0.00041826177 E Data differs at [8, 1]: E a> 0.00039347596 E b> 0.00043684588 E Data differs at [9, 1]: E a> 0.00045359458 E b> 0.00044724232 E Data differs at [10, 1]: E a> 0.00044899594 E b> 0.00046903442 E ... E 79171 different pixels found (99.79% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 4.2842657e-06 E b> 2.1721587e-05 E Data differs at [2, 1]: E a> 3.3317215e-06 E b> 1.3938283e-05 E Data differs at [3, 1]: E a> 1.8322411e-05 E b> 1.6667349e-05 E Data differs at [4, 1]: E a> 3.0500287e-06 E b> 3.5189762e-06 E Data differs at [5, 1]: E a> 3.9447364e-06 E b> 6.7672145e-06 E Data differs at [6, 1]: E a> 4.2621227e-06 E b> 4.021001e-06 E Data differs at [7, 1]: E a> 5.034949e-06 E b> 6.1944747e-06 E Data differs at [8, 1]: E a> 4.545765e-06 E b> 2.6388068e-06 E Data differs at [9, 1]: E a> 8.945237e-06 E b> 4.1124395e-06 E Data differs at [10, 1]: E a> 4.4113017e-06 E b> 5.064231e-06 E ... E 75727 different pixels found (95.45% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [17, 1]: E a> 4.913979e-08 E b> 1.9260558e-07 E Data differs at [19, 1]: E a> 1.4055821e-07 E b> 1.3462205e-08 E Data differs at [20, 1]: E a> 7.747428e-09 E b> 1.1106848e-07 E Data differs at [21, 1]: E a> 1.4606553e-07 E b> 4.5921e-08 E Data differs at [45, 1]: E a> 1.017291e-08 E b> 1.1921217e-07 E Data differs at [47, 1]: E a> 9.3021155e-09 E b> 1.0938525e-07 E Data differs at [48, 1]: E a> 3.762465e-08 E b> 1.4567745e-07 E Data differs at [51, 1]: E a> 1.82091e-07 E b> 5.269996e-09 E Data differs at [55, 1]: E a> 1.7381811e-07 E b> 1.7002574e-08 E Data differs at [61, 1]: E a> 1.0950979e-07 E b> 2.4832877e-07 E ... E 50000 different pixels found (63.02% different). E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.40018067148927 E Extra keyword 'SRCRA' in b: 3.586356414491374 E Keyword SLTSTRT1 has different values: E a> 1032 E ? ^ E b> 1033 E ? ^ E Keyword SLTSTRT2 has different values: E a> 1314 E ? ^ E b> 1315 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.19990797 E b> 0.18290745 E Data differs at [2, 1]: E a> 0.23067056 E b> 0.2477534 E Data differs at [3, 1]: E a> 0.23131803 E b> 0.2964172 E Data differs at [4, 1]: E a> 0.20412807 E b> 0.2580659 E Data differs at [5, 1]: E a> 0.2401229 E b> 0.2511261 E Data differs at [6, 1]: E a> 0.23832908 E b> 0.19198704 E Data differs at [7, 1]: E a> 0.22189732 E b> 0.17562482 E Data differs at [8, 1]: E a> 0.14300282 E b> 0.17584698 E Data differs at [9, 1]: E a> 0.15427624 E b> 0.18087307 E Data differs at [10, 1]: E a> 0.20676768 E b> 0.12289692 E ... E 56770 different pixels found (100.00% different). E E Extension HDU 9 (DQ, 2): E E Data contains differences: E Data differs at [2, 1]: E a> 4 E b> 0 E Data differs at [3, 1]: E a> 4 E b> 0 E Data differs at [4, 1]: E a> 4 E b> 0 E Data differs at [12, 1]: E a> 0 E b> 4 E Data differs at [13, 1]: E a> 0 E b> 4 E Data differs at [15, 1]: E a> 4 E b> 8388613 E Data differs at [18, 1]: E a> 16779265 E b> 0 E Data differs at [20, 1]: E a> 0 E b> 35914753 E Data differs at [46, 1]: E a> 4 E b> 0 E Data differs at [47, 1]: E a> 4 E b> 0 E ... E 9676 different pixels found (17.04% different). E E Extension HDU 10 (ERR, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 0.0224017 E b> 0.023020292 E Data differs at [2, 1]: E a> 0.024187082 E b> 0.023029739 E Data differs at [3, 1]: E a> 0.02411214 E b> 0.023737837 E Data differs at [4, 1]: E a> 0.023702415 E b> 0.023137512 E Data differs at [5, 1]: E a> 0.023448238 E b> 0.023216644 E Data differs at [6, 1]: E a> 0.023274248 E b> 0.02180982 E Data differs at [7, 1]: E a> 0.023105526 E b> 0.022139112 E Data differs at [8, 1]: E a> 0.021588627 E b> 0.021680543 E Data differs at [9, 1]: E a> 0.020922955 E b> 0.02214974 E Data differs at [10, 1]: E a> 0.0227876 E b> 0.021650355 E ... E 56758 different pixels found (99.98% different). E E Extension HDU 11 (WAVELENGTH, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [2, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [3, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [4, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [5, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [6, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [7, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [8, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [9, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [10, 1]: E a> 1.7154493 E b> 1.7107556 E ... E 56772 different pixels found (100.00% different). E E Extension HDU 12 (VAR_POISSON, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 0.0004967198 E b> 0.0005257822 E Data differs at [2, 1]: E a> 0.0005659332 E b> 0.0005248566 E Data differs at [3, 1]: E a> 0.0005600677 E b> 0.0005520634 E Data differs at [4, 1]: E a> 0.00052954094 E b> 0.0005299283 E Data differs at [5, 1]: E a> 0.00054649735 E b> 0.0005338184 E Data differs at [6, 1]: E a> 0.00053486385 E b> 0.00047162746 E Data differs at [7, 1]: E a> 0.0005210768 E b> 0.00048540108 E Data differs at [8, 1]: E a> 0.00046242232 E b> 0.00046590794 E Data differs at [9, 1]: E a> 0.00043405924 E b> 0.00048541123 E Data differs at [10, 1]: E a> 0.0005143815 E b> 0.00046457764 E ... E 56658 different pixels found (99.80% different). E E Extension HDU 13 (VAR_RNOISE, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 4.665698e-06 E b> 3.7364505e-06 E Data differs at [2, 1]: E a> 1.8443272e-05 E b> 4.801762e-06 E Data differs at [3, 1]: E a> 2.0702795e-05 E b> 1.0406416e-05 E Data differs at [4, 1]: E a> 3.1765037e-05 E b> 4.660997e-06 E Data differs at [5, 1]: E a> 2.6672885e-06 E b> 4.456551e-06 E Data differs at [6, 1]: E a> 6.1673345e-06 E b> 3.636675e-06 E Data differs at [7, 1]: E a> 1.2237247e-05 E b> 4.381598e-06 E Data differs at [8, 1]: E a> 3.4235275e-06 E b> 3.815099e-06 E Data differs at [9, 1]: E a> 3.4832394e-06 E b> 4.8139077e-06 E Data differs at [10, 1]: E a> 4.3654472e-06 E b> 3.9951915e-06 E ... E 54296 different pixels found (95.64% different). E E Extension HDU 14 (VAR_FLAT, 2): E E Data contains differences: E Data differs at [3, 1]: E a> 6.248351e-07 E b> 1.0150636e-06 E Data differs at [4, 1]: E a> 4.9849564e-07 E b> 7.5511593e-07 E Data differs at [6, 1]: E a> 6.594963e-07 E b> 4.0410734e-07 E Data differs at [7, 1]: E a> 5.5132745e-07 E b> 3.5759572e-07 E Data differs at [8, 1]: E a> 2.2292639e-07 E ? ^ ^ ^ E b> 3.2294636e-07 E ? ^ ^ ^ E Data differs at [9, 1]: E a> 2.2759919e-07 E b> 3.858297e-07 E Data differs at [10, 1]: E a> 5.277661e-07 E b> 1.6503091e-07 E Data differs at [11, 1]: E a> 4.2515765e-07 E b> 6.758743e-07 E Data differs at [12, 1]: E a> 4.9715146e-07 E b> 7.964099e-07 E Data differs at [13, 1]: E a> 6.500649e-07 E b> 4.54274e-07 E ... E 42339 different pixels found (74.58% different). E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.39411309485647 E Extra keyword 'SRCRA' in b: 3.585624631060788 E Keyword NAXIS2 has different values: E a> 321 E b> 322 E Keyword SLTSIZE1 has different values: E a> 181 E b> 183 E Keyword SLTSIZE2 has different values: E a> 321 E b> 322 E Keyword SLTSTRT2 has different values: E a> 1177 E ? ^ E b> 1178 E ? ^ E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 16 (DQ, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 17 (ERR, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 18 (WAVELENGTH, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 19 (VAR_POISSON, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 20 (VAR_RNOISE, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 21 (VAR_FLAT, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.39163095906152 E Extra keyword 'SRCRA' in b: 3.59464814053007 E Keyword NAXIS2 has different values: E a> 228 E b> 229 E Keyword SLTSIZE1 has different values: E a> 197 E b> 199 E Keyword SLTSIZE2 has different values: E a> 228 E b> 229 E Keyword SLTSTRT2 has different values: E a> 801 E b> 802 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 29 (SCI, 5): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.39602892937478 E Extra keyword 'SRCRA' in b: 3.58789771169632 E Keyword NAXIS2 has different values: E a> 203 E b> 205 E Keyword SLTSIZE2 has different values: E a> 203 E b> 205 E Keyword SLTSTRT1 has different values: E a> 857 E b> 858 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 30 (DQ, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 31 (ERR, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 32 (WAVELENGTH, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 33 (VAR_POISSON, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 34 (VAR_RNOISE, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 35 (VAR_FLAT, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 36 (SCI, 6): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSIZE1 has different values: E a> 133 E b> 134 E Keyword SLTSTRT2 has different values: E a> 217 E b> 218 E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 37 (DQ, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 38 (ERR, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 39 (WAVELENGTH, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 40 (VAR_POISSON, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 41 (VAR_RNOISE, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 42 (VAR_FLAT, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 43 (SCI, 7): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.40926138863649 E Extra keyword 'SRCRA' in b: 3.579587921874186 E Keyword NAXIS2 has different values: E a> 209 E b> 211 E Keyword SLTSIZE1 has different values: E a> 117 E b> 119 E Keyword SLTSIZE2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 44 (DQ, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 45 (ERR, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 46 (WAVELENGTH, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 47 (VAR_POISSON, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 48 (VAR_RNOISE, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 49 (VAR_FLAT, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 50 (SCI, 8): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.38980139908971 E Extra keyword 'SRCRA' in b: 3.600004699000835 E Keyword NAXIS2 has different values: E a> 236 E b> 237 E Keyword SLTSIZE1 has different values: E a> 10 E b> 11 E Keyword SLTSIZE2 has different values: E a> 236 E b> 237 E Keyword SLTSTRT2 has different values: E a> 521 E b> 522 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 51 (DQ, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 52 (ERR, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 53 (WAVELENGTH, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 54 (VAR_POISSON, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 55 (VAR_RNOISE, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 56 (VAR_FLAT, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 57 (SCI, 9): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.3860237133523 E Extra keyword 'SRCRA' in b: 3.569829752935783 E Keyword SLTSTRT1 has different values: E a> 25 E b> 26 E Keyword SLTSTRT2 has different values: E a> 1791 E ? ^ E b> 1792 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.018300496 E b> 0.04914401 E Data differs at [2, 1]: E a> 0.07292115 E b> 0.03709803 E Data differs at [3, 1]: E a> 0.006714215 E b> 0.045797363 E Data differs at [4, 1]: E a> 0.057412837 E b> 0.030214189 E Data differs at [5, 1]: E a> 0.05260742 E b> 0.002094747 E Data differs at [6, 1]: E a> 0.013841207 E b> 0.07073075 E Data differs at [7, 1]: E a> 0.06833076 E b> 0.07115308 E Data differs at [8, 1]: E a> 0.04218341 E b> 0.047660735 E Data differs at [9, 1]: E a> 0.027864996 E b> 0.042478852 E Data differs at [10, 1]: E a> 0.059238214 E b> 0.044986747 E ... E 55174 different pixels found (100.00% different). E E Extension HDU 58 (DQ, 9): E E Data contains differences: E Data differs at [15, 1]: E a> 0 E b> 4 E Data differs at [16, 1]: E a> 0 E b> 4 E Data differs at [20, 1]: E a> 0 E b> 4 E Data differs at [21, 1]: E a> 0 E b> 4 E Data differs at [28, 1]: E a> 0 E b> 4 E Data differs at [32, 1]: E a> 4 E b> 0 E Data differs at [67, 1]: E a> 0 E b> 4 E Data differs at [68, 1]: E a> 0 E b> 4 E Data differs at [70, 1]: E a> 4 E b> 0 E Data differs at [71, 1]: E a> 4 E b> 0 E ... E 8836 different pixels found (16.01% different). E E Extension HDU 59 (ERR, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 0.01982531 E b> 0.019883042 E Data differs at [2, 1]: E a> 0.020379202 E b> 0.020768518 E Data differs at [3, 1]: E a> 0.01980809 E b> 0.0201421 E Data differs at [4, 1]: E a> 0.020428026 E b> 0.019892808 E Data differs at [5, 1]: E a> 0.020475939 E b> 0.019547174 E Data differs at [6, 1]: E a> 0.019923387 E b> 0.02070914 E Data differs at [7, 1]: E a> 0.020515747 E b> 0.020945193 E Data differs at [8, 1]: E a> 0.01992046 E b> 0.02074254 E Data differs at [9, 1]: E a> 0.0195891 E b> 0.020285513 E Data differs at [10, 1]: E a> 0.020573577 E b> 0.019876871 E ... E 55167 different pixels found (99.98% different). E E Extension HDU 60 (WAVELENGTH, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [2, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [3, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [4, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [5, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [6, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [7, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [8, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [9, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [10, 1]: E a> 1.7922435 E b> 1.7875497 E ... E 55176 different pixels found (100.00% different). E E Extension HDU 61 (VAR_POISSON, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 0.00038881451 E b> 0.00039086334 E Data differs at [2, 1]: E a> 0.0004118398 E b> 0.00042644018 E Data differs at [3, 1]: E a> 0.00038849132 E b> 0.00040312088 E Data differs at [4, 1]: E a> 0.00041337454 E b> 0.00039108226 E Data differs at [5, 1]: E a> 0.00041502528 E b> 0.0003768711 E Data differs at [6, 1]: E a> 0.00039139003 E b> 0.0004251499 E Data differs at [7, 1]: E a> 0.00041772542 E b> 0.00043529167 E Data differs at [8, 1]: E a> 0.00039268463 E b> 0.00042584812 E Data differs at [9, 1]: E a> 0.00037906787 E b> 0.00040800878 E Data differs at [10, 1]: E a> 0.00041859446 E b> 0.0003918399 E ... E 55032 different pixels found (99.74% different). E E Extension HDU 62 (VAR_RNOISE, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 4.224553e-06 E b> 4.444852e-06 E Data differs at [2, 1]: E a> 3.4088628e-06 E b> 4.874177e-06 E Data differs at [3, 1]: E a> 3.868535e-06 E b> 2.5592135e-06 E Data differs at [4, 1]: E a> 3.8915937e-06 E b> 4.6309597e-06 E Data differs at [5, 1]: E a> 4.2061934e-06 E b> 5.220881e-06 E Data differs at [6, 1]: E a> 5.549274e-06 E b> 3.6613828e-06 E Data differs at [7, 1]: E a> 3.116495e-06 E b> 3.3503884e-06 E Data differs at [8, 1]: E a> 4.1193985e-06 E b> 4.377403e-06 E Data differs at [9, 1]: E a> 4.656189e-06 E b> 3.4719258e-06 E Data differs at [10, 1]: E a> 4.6361974e-06 E b> 3.2270991e-06 E ... E 52507 different pixels found (95.16% different). E E Extension HDU 63 (VAR_FLAT, 9): E E Data contains differences: E Data differs at [113, 1]: E a> 1.4214218e-07 E b> 1.9844174e-08 E Data differs at [119, 1]: E a> 2.5894991e-08 E b> 1.5745938e-07 E Data differs at [122, 1]: E a> 2.652957e-07 E b> 1.3733384e-07 E Data differs at [123, 1]: E a> 3.9400356e-07 E b> 1.0309822e-07 E Data differs at [125, 1]: E a> 4.227829e-07 E ? ^ - E b> 3.2127582e-07 E ? ^ + + E Data differs at [127, 1]: E a> 5.5986595e-07 E b> 6.782127e-07 E Data differs at [128, 1]: E a> 7.1790396e-07 E b> 1.0329828e-06 E Data differs at [130, 1]: E a> 1.4445675e-06 E b> 9.4824804e-07 E Data differs at [131, 1]: E a> 1.9395357e-06 E b> 0.0 E Data differs at [132, 1]: E a> 2.1240514e-06 E b> 1.7619503e-06 E ... E 10858 different pixels found (19.68% different). E E Extension HDU 64 (SCI, 10): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 65 (DQ, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 66 (ERR, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 67 (WAVELENGTH, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 68 (VAR_POISSON, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 69 (VAR_RNOISE, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 70 (VAR_FLAT, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484dbf1040>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError ___________________________ test_nis_wfss_spec2[x1d] ___________________________ run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...0001_nis_x1d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_x1d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'x1d' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_x1d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_x1d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (EXTRACT1D, 1): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40553434784723 E Extra keyword 'SRCRA' in b: 3.592040812067641 E E Data contains differences: E Column FLUX data differs in row 124: E a> nan E b> 0.19965209435453296 E Column FLUX data differs in row 125: E a> 0.19958615840908814 E b> 0.08338277790683482 E Column FLUX data differs in row 126: E a> 0.08341154852786625 E b> 0.03449557935081653 E Column FLUX data differs in row 127: E a> 0.034498400786272476 E b> 0.012638582714221514 E Column FLUX data differs in row 128: E a> 0.01264034428322908 E b> 0.005567820821205211 E Column FLUX data differs in row 129: E a> 0.005568299248189053 E b> 0.003188758983656166 E Column FLUX data differs in row 130: E a> 0.003188177393866602 E b> 0.0015855300448706306 E Column FLUX data differs in row 131: E a> 0.001585639431825048 E b> 0.000772139447951667 E Column FLUX data differs in row 132: E a> 0.0007721346410758137 E b> 0.0005796982121486047 E Column FLUX data differs in row 133: E a> 0.0005798783091780554 E b> 0.000516048352137196 E ...840 additional difference(s) found. E ... E 850 different table data element(s) found (13.15% different). E E Extension HDU 2 (EXTRACT1D, 2): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40018067148927 E Extra keyword 'SRCRA' in b: 3.586356414491374 E E Data contains differences: E Column FLUX data differs in row 84: E a> nan E b> 0.2698664362820044 E Column FLUX data differs in row 85: E a> 0.26962464603525377 E b> 0.12211139396311618 E Column FLUX data differs in row 86: E a> 0.12198819415895164 E b> 0.04962625225288255 E Column FLUX data differs in row 87: E a> 0.049562661762685284 E b> 0.018258746925414057 E Column FLUX data differs in row 88: E a> 0.018230759394177298 E b> 0.006916025273632863 E Column FLUX data differs in row 89: E a> 0.006904931872381813 E b> 0.0038529326099182304 E Column FLUX data differs in row 90: E a> 0.003847998458144548 E b> 0.0020143717741633524 E Column FLUX data differs in row 91: E a> 0.0020123750565986557 E b> 0.0009705948534178853 E Column FLUX data differs in row 92: E a> 0.000969239564575972 E b> 0.0006048949833789275 E Column FLUX data differs in row 93: E a> 0.0006042013648555952 E b> 0.0005068685810364957 E ...739 additional difference(s) found. E ... E 749 different table data element(s) found (16.71% different). E E Extension HDU 3 (EXTRACT1D, 3): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.39411309485647 E Extra keyword 'SRCRA' in b: 3.585624631060788 E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Table rows differ: E a: 321 E b: 322 E No further data comparison performed. E E Extension HDU 4 (EXTRACT1D, 4): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.39163095906152 E Extra keyword 'SRCRA' in b: 3.59464814053007 E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Table rows differ: E a: 228 E b: 229 E No further data comparison performed. E E Extension HDU 5 (EXTRACT1D, 5): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.39602892937478 E Extra keyword 'SRCRA' in b: 3.58789771169632 E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Table rows differ: E a: 203 E b: 205 E No further data comparison performed. E E Extension HDU 6 (EXTRACT1D, 6): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E E Data contains differences: E Column FLUX data differs in row 161: E a> nan E b> 0.02055506829163751 E Column FLUX data differs in row 162: E a> 0.020566550871851032 E b> 0.009067604615706314 E Column FLUX data differs in row 163: E a> 0.009072489957081147 E b> 0.0037622867952118596 E Column FLUX data differs in row 164: E a> 0.0037641753564277825 E b> 0.0014371262123989322 E Column FLUX data differs in row 165: E a> 0.001437808952700884 E b> 0.0006427779261091129 E Column FLUX data differs in row 166: E a> 0.0006430716156747743 E b> 0.00036997742474840866 E Column FLUX data differs in row 167: E a> 0.00037013865236702227 E b> 0.00019656917044116515 E Column FLUX data differs in row 168: E a> 0.00019664895703308365 E b> 9.840838855921807e-05 E Column FLUX data differs in row 169: E a> 9.844657628756582e-05 E b> 7.485421522527449e-05 E Column FLUX data differs in row 170: E a> 7.488107704058298e-05 E b> 6.865055736478408e-05 E ...799 additional difference(s) found. E ... E 809 different table data element(s) found (13.62% different). E E Extension HDU 7 (EXTRACT1D, 7): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40926138863649 E Extra keyword 'SRCRA' in b: 3.579587921874186 E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Table rows differ: E a: 209 E b: 211 E No further data comparison performed. E E Extension HDU 8 (EXTRACT1D, 8): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38980139908971 E Extra keyword 'SRCRA' in b: 3.600004699000835 E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Table rows differ: E a: 236 E b: 237 E No further data comparison performed. E E Extension HDU 9 (EXTRACT1D, 9): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.3860237133523 E Extra keyword 'SRCRA' in b: 3.569829752935783 E E Data contains differences: E Column FLUX data differs in row 101: E a> nan E b> 0.05615284242707679 E Column FLUX data differs in row 102: E a> 0.05616139296423502 E b> 0.02412590346558556 E Column FLUX data differs in row 103: E a> 0.02413037459729436 E b> 0.00916803769701577 E Column FLUX data differs in row 104: E a> 0.009174279185418032 E b> 0.003397537889758585 E Column FLUX data differs in row 105: E a> 0.0033965946326864407 E b> 0.0016459808930530768 E Column FLUX data differs in row 106: E a> 0.0016463490659715892 E b> 0.000891709815032751 E Column FLUX data differs in row 107: E a> 0.0008908816672572794 E b> 0.0004284594250636278 E Column FLUX data differs in row 108: E a> 0.00042849662801539885 E b> 0.00021847853103165005 E Column FLUX data differs in row 109: E a> 0.0002184973556952005 E b> 0.00017133875846272038 E Column FLUX data differs in row 110: E a> 0.00017132569453140543 E b> 0.00014841618141793223 E ...695 additional difference(s) found. E ... E 705 different table data element(s) found (16.18% different). E E Extension HDU 10 (EXTRACT1D, 10): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Table rows differ: E a: 189 E b: 191 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484ddedd60>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError _______________________ test_nis_wfss_spec3[s00015-cal] ________________________ run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits'} suffix = 'cal', source_id = 's00015' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 2 (DQ, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 3 (ERR, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 4 (WAVELENGTH, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 5 (VAR_POISSON, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 6 (VAR_RNOISE, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 7 (VAR_FLAT, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 194 E b> 195 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 9 (DQ, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 10 (ERR, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 11 (WAVELENGTH, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 12 (VAR_POISSON, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 13 (VAR_RNOISE, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 14 (VAR_FLAT, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword SLTSIZE1 has different values: E a> 213 E b> 214 E Keyword SLTSTRT2 has different values: E a> 53 E b> 54 E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 16 (DQ, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 17 (ERR, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 18 (WAVELENGTH, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 19 (VAR_POISSON, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 20 (VAR_RNOISE, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 21 (VAR_FLAT, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 132 E b> 134 E Keyword SLTSIZE1 has different values: E a> 213 E b> 214 E Keyword SLTSIZE2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f4842750c70>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2022-12-04 03:48:35,556 - stpipe.Spec3Pipeline - INFO - Spec3Pipeline instance created. 2022-12-04 03:48:35,557 - stpipe.Spec3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2022-12-04 03:48:35,558 - stpipe.Spec3Pipeline.master_background - INFO - MasterBackgroundStep instance created. 2022-12-04 03:48:35,559 - stpipe.Spec3Pipeline.mrs_imatch - INFO - MRSIMatchStep instance created. 2022-12-04 03:48:35,560 - stpipe.Spec3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-12-04 03:48:35,561 - stpipe.Spec3Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2022-12-04 03:48:35,562 - stpipe.Spec3Pipeline.cube_build - INFO - CubeBuildStep instance created. 2022-12-04 03:48:35,563 - stpipe.Spec3Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-12-04 03:48:35,564 - stpipe.Spec3Pipeline.photom - INFO - PhotomStep instance created. 2022-12-04 03:48:35,565 - stpipe.Spec3Pipeline.combine_1d - INFO - Combine1dStep instance created. 2022-12-04 03:48:36,028 - stpipe.Spec3Pipeline - INFO - Step Spec3Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec3_003_asn.json',). 2022-12-04 03:48:36,036 - stpipe.Spec3Pipeline - INFO - Step Spec3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'user_background': None, 'save_background': False, 'force_subtract': False}, 'mrs_imatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'bkg_degree': 1, 'subtract': False}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None, 'in_memory': False}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'combine_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'}}} 2022-12-04 03:48:36,985 - stpipe.Spec3Pipeline - INFO - Prefetching reference files for dataset: 'jw01324001001_03101_00001_nis_cal.fits' reftypes = ['apcorr', 'area', 'cubepar', 'drizpars', 'extract1d', 'photom', 'speckernel', 'specprofile', 'spectrace', 'wavemap'] 2022-12-04 03:48:36,994 - stpipe.Spec3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. 2022-12-04 03:48:36,995 - stpipe.Spec3Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2022-12-04 03:48:36,995 - stpipe.Spec3Pipeline - INFO - Prefetch for CUBEPAR reference file is 'N/A'. 2022-12-04 03:48:36,996 - stpipe.Spec3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. 2022-12-04 03:48:36,997 - stpipe.Spec3Pipeline - INFO - Prefetch for EXTRACT1D reference file is 'N/A'. 2022-12-04 03:48:36,997 - stpipe.Spec3Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. 2022-12-04 03:48:36,998 - stpipe.Spec3Pipeline - INFO - Prefetch for SPECKERNEL reference file is 'N/A'. 2022-12-04 03:48:36,998 - stpipe.Spec3Pipeline - INFO - Prefetch for SPECPROFILE reference file is 'N/A'. 2022-12-04 03:48:36,998 - stpipe.Spec3Pipeline - INFO - Prefetch for SPECTRACE reference file is 'N/A'. 2022-12-04 03:48:36,998 - stpipe.Spec3Pipeline - INFO - Prefetch for WAVEMAP reference file is 'N/A'. 2022-12-04 03:48:36,999 - stpipe.Spec3Pipeline - INFO - Starting calwebb_spec3 ... 2022-12-04 03:48:42,334 - stpipe.Spec3Pipeline - INFO - Convert from exposure-based to source-based data. 2022-12-04 03:48:42,334 - stpipe.Spec3Pipeline - INFO - Reorganizing data from exposure jw01324001001_03101_00001_nis_cal.fits 2022-12-04 03:48:43,472 - stpipe.Spec3Pipeline - INFO - Reorganizing data from exposure jw01324001001_03101_00002_nis_cal.fits 2022-12-04 03:48:43,838 - stpipe.Spec3Pipeline - INFO - Reorganizing data from exposure jw01324001001_05101_00002_nis_cal.fits 2022-12-04 03:48:44,237 - stpipe.Spec3Pipeline - INFO - Reorganizing data from exposure jw01324001001_05101_00001_nis_cal.fits 2022-12-04 03:48:45,862 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:46,420 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:46,421 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:46,540 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:46,540 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:46,579 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:48:46,579 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:46,581 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=358 2022-12-04 03:48:46,657 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:48:46,658 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:46,660 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=357 2022-12-04 03:48:46,737 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:48:46,737 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:46,740 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=284 2022-12-04 03:48:46,813 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:48:46,814 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:46,816 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=283 2022-12-04 03:48:47,084 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:48:47,084 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:48:47,590 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:48:47,591 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:48:47,596 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:48:47,634 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:48:47,636 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:48:47,638 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:48:47,640 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:48:47,641 - stpipe.Spec3Pipeline.combine_1d - WARNING - 1 output pixel numbers were NaN 2022-12-04 03:48:47,642 - stpipe.Spec3Pipeline.combine_1d - WARNING - 8 elements of output had no corresponding input data; 2022-12-04 03:48:47,642 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:48:47,786 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:48:47,787 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:48:48,566 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:49,143 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:49,144 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:49,259 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:49,259 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:49,298 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:48:49,298 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:49,300 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 2022-12-04 03:48:49,370 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:48:49,370 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:49,372 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 2022-12-04 03:48:49,441 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:48:49,442 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:49,444 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=174 2022-12-04 03:48:49,515 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:48:49,516 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:49,518 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=173 2022-12-04 03:48:49,766 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:48:49,767 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:48:50,278 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:48:50,279 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:48:50,285 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:48:50,316 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:48:50,317 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:48:50,319 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:48:50,320 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:48:50,322 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:48:50,322 - stpipe.Spec3Pipeline.combine_1d - WARNING - 11 elements of output had no corresponding input data; 2022-12-04 03:48:50,322 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:48:50,467 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:48:50,467 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:48:51,245 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:51,751 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:51,752 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:51,863 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:51,863 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:51,903 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:48:51,903 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:51,905 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 2022-12-04 03:48:51,979 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:48:51,979 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:51,981 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 2022-12-04 03:48:52,054 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:48:52,054 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:52,056 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 2022-12-04 03:48:52,127 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:48:52,128 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:52,130 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 2022-12-04 03:48:52,376 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:48:52,376 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:48:52,890 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:48:52,891 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:48:52,897 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:48:52,930 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:48:52,931 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:48:52,933 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:48:52,934 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:48:52,936 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:48:52,936 - stpipe.Spec3Pipeline.combine_1d - WARNING - 12 elements of output had no corresponding input data; 2022-12-04 03:48:52,936 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:48:53,080 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:48:53,080 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:48:53,846 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:54,355 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:54,357 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:54,465 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:54,465 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:54,503 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:48:54,503 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:54,505 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 2022-12-04 03:48:54,573 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:48:54,574 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:54,575 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 2022-12-04 03:48:54,643 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:48:54,643 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:54,645 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=152 2022-12-04 03:48:54,715 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:48:54,716 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:54,717 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=153 2022-12-04 03:48:54,962 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:48:54,962 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:48:55,481 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:48:55,481 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:48:55,487 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:48:55,516 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:48:55,518 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:48:55,519 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:48:55,521 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:48:55,522 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:48:55,665 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:48:55,666 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:48:56,475 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:56,989 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:56,990 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:57,101 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:57,101 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:57,140 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:48:57,140 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:57,142 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=202 2022-12-04 03:48:57,211 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:48:57,211 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:57,213 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=203 2022-12-04 03:48:57,282 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:48:57,282 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:57,284 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=128 2022-12-04 03:48:57,355 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:48:57,355 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:57,357 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=129 2022-12-04 03:48:57,605 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:48:57,605 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:48:58,125 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:48:58,126 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:48:58,132 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:48:58,158 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:48:58,159 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:48:58,161 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:48:58,162 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:48:58,163 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:48:58,163 - stpipe.Spec3Pipeline.combine_1d - WARNING - 12 elements of output had no corresponding input data; 2022-12-04 03:48:58,163 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:48:58,304 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:48:58,304 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:48:59,088 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:59,615 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:59,616 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:59,729 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:59,729 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:59,769 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:48:59,769 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:59,771 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=132, ystart=0, ystop=329 2022-12-04 03:48:59,846 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:48:59,846 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:59,848 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=127, ystart=0, ystop=328 2022-12-04 03:48:59,920 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:48:59,920 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:59,922 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=177, ystart=0, ystop=255 2022-12-04 03:48:59,993 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:48:59,993 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:59,995 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=185, ystart=0, ystop=254 2022-12-04 03:49:00,245 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:49:00,245 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:49:00,764 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:49:00,765 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:49:00,770 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:49:00,800 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:49:00,802 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:49:00,804 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:49:00,805 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:49:00,806 - stpipe.Spec3Pipeline.combine_1d - WARNING - 1 output pixel numbers were NaN 2022-12-04 03:49:00,806 - stpipe.Spec3Pipeline.combine_1d - WARNING - 3 elements of output had no corresponding input data; 2022-12-04 03:49:00,806 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:49:00,948 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:49:00,948 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:49:01,710 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:49:02,236 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:49:02,238 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:49:02,349 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:49:02,349 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:49:02,389 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:49:02,389 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:02,391 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=208 2022-12-04 03:49:02,460 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:49:02,461 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:02,462 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=209 2022-12-04 03:49:02,530 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:49:02,530 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:02,532 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=134 2022-12-04 03:49:02,600 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:49:02,600 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:02,602 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=135 2022-12-04 03:49:02,847 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:49:02,847 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:49:03,379 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:49:03,380 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:49:03,386 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:49:03,411 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:49:03,413 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:49:03,414 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:49:03,415 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:49:03,416 - stpipe.Spec3Pipeline.combine_1d - WARNING - 3 output pixel numbers were NaN 2022-12-04 03:49:03,416 - stpipe.Spec3Pipeline.combine_1d - WARNING - 13 elements of output had no corresponding input data; 2022-12-04 03:49:03,417 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:49:03,559 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:49:03,559 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:49:04,321 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:49:04,841 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:49:04,842 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:49:04,951 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:49:04,951 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:49:04,990 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:49:04,992 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 2022-12-04 03:49:05,063 - stpipe.Spec3Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:49:05,215 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:49:05,217 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 2022-12-04 03:49:05,284 - stpipe.Spec3Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:49:05,431 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:49:05,433 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 2022-12-04 03:49:05,499 - stpipe.Spec3Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:49:05,631 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:49:05,633 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 2022-12-04 03:49:05,701 - stpipe.Spec3Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:49:06,007 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:49:06,008 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:49:06,536 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:49:06,536 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:49:06,542 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:49:06,569 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:49:06,570 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:49:06,572 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:49:06,573 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:49:06,574 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:49:06,574 - stpipe.Spec3Pipeline.combine_1d - WARNING - 15 elements of output had no corresponding input data; 2022-12-04 03:49:06,574 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:49:06,715 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:49:06,715 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:49:07,523 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:49:08,055 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:49:08,056 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:49:08,172 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:49:08,172 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:49:08,212 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:49:08,212 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:08,214 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=241 2022-12-04 03:49:08,293 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:49:08,293 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:08,295 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=240 2022-12-04 03:49:08,368 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:49:08,368 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:08,370 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=283, ystart=0, ystop=167 2022-12-04 03:49:08,444 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:49:08,444 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:08,446 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=275, ystart=0, ystop=166 2022-12-04 03:49:08,701 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:49:08,701 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:49:09,233 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:49:09,234 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:49:09,239 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:49:09,269 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:49:09,270 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:49:09,272 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:49:09,273 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:49:09,275 - stpipe.Spec3Pipeline.combine_1d - WARNING - 1 output pixel numbers were NaN 2022-12-04 03:49:09,275 - stpipe.Spec3Pipeline.combine_1d - WARNING - 19 elements of output had no corresponding input data; 2022-12-04 03:49:09,275 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:49:09,419 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:49:09,419 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:49:10,200 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:49:10,736 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:49:10,738 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:49:10,850 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:49:10,850 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:49:10,891 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:49:10,891 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:10,893 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=188 2022-12-04 03:49:10,964 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:49:10,964 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:10,966 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=193 2022-12-04 03:49:11,037 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:49:11,037 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:11,039 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=132 2022-12-04 03:49:11,113 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:49:11,114 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:11,116 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=131 2022-12-04 03:49:11,369 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:49:11,369 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:49:11,903 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:49:11,904 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:49:11,909 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:49:11,935 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:49:11,936 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:49:11,937 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:49:11,939 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:49:11,940 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:49:12,080 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:49:12,080 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:49:12,080 - stpipe.Spec3Pipeline - INFO - Ending calwebb_spec3 2022-12-04 03:49:12,081 - stpipe.Spec3Pipeline - INFO - Step Spec3Pipeline done ------------------------------ Captured log setup ------------------------------ INFO stpipe.Spec3Pipeline:step.py:366 Spec3Pipeline instance created. INFO stpipe.Spec3Pipeline.assign_mtwcs:step.py:366 AssignMTWcsStep instance created. INFO stpipe.Spec3Pipeline.master_background:step.py:366 MasterBackgroundStep instance created. INFO stpipe.Spec3Pipeline.mrs_imatch:step.py:366 MRSIMatchStep instance created. INFO stpipe.Spec3Pipeline.outlier_detection:step.py:366 OutlierDetectionStep instance created. INFO stpipe.Spec3Pipeline.resample_spec:step.py:366 ResampleSpecStep instance created. INFO stpipe.Spec3Pipeline.cube_build:step.py:366 CubeBuildStep instance created. INFO stpipe.Spec3Pipeline.extract_1d:step.py:366 Extract1dStep instance created. INFO stpipe.Spec3Pipeline.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec3Pipeline.combine_1d:step.py:366 Combine1dStep instance created. INFO stpipe.Spec3Pipeline:step.py:430 Step Spec3Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec3_003_asn.json',). INFO stpipe.Spec3Pipeline:step.py:434 Step Spec3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'user_background': None, 'save_background': False, 'force_subtract': False}, 'mrs_imatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'bkg_degree': 1, 'subtract': False}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None, 'in_memory': False}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'combine_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'}}} INFO stpipe.Spec3Pipeline:pipeline.py:358 Prefetching reference files for dataset: 'jw01324001001_03101_00001_nis_cal.fits' reftypes = ['apcorr', 'area', 'cubepar', 'drizpars', 'extract1d', 'photom', 'speckernel', 'specprofile', 'spectrace', 'wavemap'] INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for CUBEPAR reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for EXTRACT1D reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for SPECKERNEL reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for SPECPROFILE reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for SPECTRACE reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for WAVEMAP reference file is 'N/A'. INFO stpipe.Spec3Pipeline:calwebb_spec3.py:76 Starting calwebb_spec3 ... INFO stpipe.Spec3Pipeline:calwebb_spec3.py:160 Convert from exposure-based to source-based data. INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_03101_00001_nis_cal.fits INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_03101_00001_nis_cal.fits DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_03101_00002_nis_cal.fits INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_03101_00002_nis_cal.fits DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_05101_00002_nis_cal.fits INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_05101_00002_nis_cal.fits DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_05101_00001_nis_cal.fits INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_05101_00001_nis_cal.fits DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 358 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 358 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=358 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=358 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 357 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 357 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=357 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=357 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 284 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 284 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [284.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [284.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=284 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=284 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 283 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 283 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [283.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [283.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=283 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=283 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 8 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 8 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 174 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 174 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [174.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [174.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=174 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=174 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 173 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 173 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [173.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [173.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=173 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=173 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 11 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 11 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 12 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 12 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 152 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 152 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [152.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [152.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=152 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=152 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=153 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 202 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 202 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=202 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=202 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 203 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 203 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=203 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=203 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 128 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 128 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [128.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [128.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=128 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=128 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 129 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 129 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [129.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [129.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=129 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=129 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 12 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 12 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 132 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 132 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 329 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 329 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=132, ystart=0, ystop=329 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=132, ystart=0, ystop=329 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 127 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 127 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 328 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 328 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [127.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [127.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=127, ystart=0, ystop=328 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=127, ystart=0, ystop=328 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 177 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 177 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 255 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 255 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [255.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [255.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=177, ystart=0, ystop=255 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=177, ystart=0, ystop=255 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 185 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 185 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [254.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [254.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=185, ystart=0, ystop=254 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=185, ystart=0, ystop=254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 3 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 3 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 208 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 208 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=208 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=208 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 209 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 209 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=209 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=209 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 134 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 134 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [134.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [134.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=134 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=134 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 135 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 135 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [135.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [135.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=135 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=135 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 3 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 3 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 13 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 13 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 15 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 15 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 241 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 241 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=241 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=241 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 240 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 240 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=240 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=240 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 283 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 283 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 167 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 167 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [167.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [167.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=283, ystart=0, ystop=167 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=283, ystart=0, ystop=167 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 275 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 275 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 166 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 166 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [166.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [166.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=275, ystart=0, ystop=166 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=275, ystart=0, ystop=166 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 19 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 19 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 188 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 188 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=188 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=188 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 193 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 193 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=193 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=193 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 132 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 132 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=132 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=132 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 131 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 131 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [131.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [131.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=131 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=131 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:calwebb_spec3.py:280 Ending calwebb_spec3 INFO stpipe.Spec3Pipeline:step.py:546 Step Spec3Pipeline done _______________________ test_nis_wfss_spec3[s00015-x1d] ________________________ run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits'} suffix = 'x1d', source_id = 's00015' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (EXTRACT1D, 1): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Table rows differ: E a: 189 E b: 191 E No further data comparison performed. E E Extension HDU 2 (EXTRACT1D, 2): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Table rows differ: E a: 194 E b: 195 E No further data comparison performed. E E Extension HDU 3 (EXTRACT1D, 3): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 213 E b> 214 E E Data contains differences: E Table rows differ: E a: 213 E b: 214 E No further data comparison performed. E E Extension HDU 4 (EXTRACT1D, 4): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 213 E b> 214 E E Data contains differences: E Table rows differ: E a: 213 E b: 214 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484277b520>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError _______________________ test_nis_wfss_spec3[s00015-c1d] ________________________ run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits'} suffix = 'c1d', source_id = 's00015' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (COMBINE1D, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 222 E b> 223 E E Data contains differences: E Table rows differ: E a: 222 E b: 223 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484276b2b0>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError _______________________ test_nis_wfss_spec3[s00104-cal] ________________________ run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits'} suffix = 'cal', source_id = 's00104' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSIZE1 has different values: E a> 133 E b> 134 E Keyword SLTSTRT2 has different values: E a> 217 E b> 218 E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 4 (WAVELENGTH, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword NAXIS2 has different values: E a> 329 E b> 331 E Keyword SLTSIZE2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 9 (DQ, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 10 (ERR, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 11 (WAVELENGTH, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 12 (VAR_POISSON, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 13 (VAR_RNOISE, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 14 (VAR_FLAT, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSTRT2 has different values: E a> 287 E b> 288 E E Data contains differences: E Data differs at [89, 1]: E a> -74.07165 E b> -339.34348 E Data differs at [90, 1]: E a> 286.5817 E b> 121.14829 E Data differs at [91, 1]: E a> 26.508356 E b> 68.865234 E Data differs at [92, 1]: E a> 27.633263 E b> 5.8705287 E Data differs at [93, 1]: E a> 3.9196436 E b> 18.383652 E Data differs at [94, 1]: E a> -3.9956641 E b> 5.262102 E Data differs at [95, 1]: E a> 1.0805693 E b> 0.46943638 E Data differs at [96, 1]: E a> 1.0126586 E b> 2.5576546 E Data differs at [97, 1]: E a> 1.0354162 E b> 0.49483985 E Data differs at [98, 1]: E a> 0.38727894 E b> 0.4743746 E ... E 17663 different pixels found (38.76% different). E E Extension HDU 16 (DQ, 3): E E Data contains differences: E Data differs at [8, 1]: E a> 1 E b> 5 E Data differs at [12, 1]: E a> 1 E b> 5 E Data differs at [18, 1]: E a> 1 E b> 5 E Data differs at [19, 1]: E a> 1 E b> 5 E Data differs at [26, 1]: E a> 16795649 E b> 5 E Data differs at [28, 1]: E a> 1 E b> 5 E Data differs at [30, 1]: E a> 5 E b> 1 E Data differs at [65, 1]: E a> 5 E b> 1 E Data differs at [66, 1]: E a> 5 E b> 1 E Data differs at [67, 1]: E a> 5 E b> 1 E ... E 5961 different pixels found (13.08% different). E E Extension HDU 17 (ERR, 3): E E Data contains differences: E Data differs at [89, 1]: E a> 239.50731 E b> 246.01814 E Data differs at [90, 1]: E a> 108.53022 E b> 107.718636 E Data differs at [91, 1]: E a> 42.71162 E b> 42.914448 E Data differs at [92, 1]: E a> 15.748254 E b> 14.782429 E Data differs at [93, 1]: E a> 5.6530185 E b> 5.7710247 E Data differs at [94, 1]: E a> 2.874773 E b> 2.9838076 E Data differs at [95, 1]: E a> 1.515495 E b> 1.5497639 E Data differs at [96, 1]: E a> 0.75331247 E b> 0.7716013 E Data differs at [97, 1]: E a> 0.40976158 E b> 0.3974131 E Data differs at [98, 1]: E a> 0.33863994 E b> 0.35282147 E ... E 17659 different pixels found (38.75% different). E E Extension HDU 19 (VAR_POISSON, 3): E E Data contains differences: E Data differs at [89, 1]: E a> 53821.113 E b> 56879.93 E Data differs at [90, 1]: E a> 11154.925 E b> 11042.384 E Data differs at [91, 1]: E a> 1798.8871 E b> 1823.0869 E Data differs at [92, 1]: E a> 244.96977 E b> 215.16312 E Data differs at [93, 1]: E a> 31.496395 E b> 32.830643 E Data differs at [94, 1]: E a> 8.131156 E b> 8.765586 E Data differs at [95, 1]: E a> 2.2631826 E b> 2.3752425 E Data differs at [96, 1]: E a> 0.5587288 E b> 0.58819455 E Data differs at [97, 1]: E a> 0.1656143 E b> 0.15637957 E Data differs at [98, 1]: E a> 0.112855755 E b> 0.1227286 E ... E 17653 different pixels found (38.74% different). E E Extension HDU 20 (VAR_RNOISE, 3): E E Data contains differences: E Data differs at [89, 1]: E a> 3542.5764 E b> 3643.7988 E Data differs at [90, 1]: E a> 622.9277 E b> 560.7641 E Data differs at [91, 1]: E a> 25.387377 E b> 18.510715 E Data differs at [92, 1]: E a> 3.0291412 E b> 3.3567462 E Data differs at [93, 1]: E a> 0.46004888 E b> 0.47041282 E Data differs at [94, 1]: E a> 0.13299814 E b> 0.13722908 E Data differs at [95, 1]: E a> 0.033529703 E b> 0.026523259 E Data differs at [96, 1]: E a> 0.008739389 E b> 0.0070996303 E Data differs at [97, 1]: E a> 0.0022777675 E b> 0.0015548315 E Data differs at [98, 1]: E a> 0.0018196771 E b> 0.0017517891 E ... E 17485 different pixels found (38.37% different). E E Extension HDU 21 (VAR_FLAT, 3): E E Data contains differences: E Data differs at [89, 1]: E a> 0.060233466 E b> 1.2028182 E Data differs at [90, 1]: E a> 0.9562432 E b> 0.15874648 E Data differs at [91, 1]: E a> 0.0082276 E b> 0.052054167 E Data differs at [92, 1]: E a> 0.008553854 E b> 0.00036526716 E Data differs at [93, 1]: E a> 0.00017248475 E b> 0.0036787412 E Data differs at [94, 1]: E a> 0.00016593159 E b> 0.00029205868 E Data differs at [95, 1]: E a> 1.2531296e-05 E b> 2.3370512e-06 E Data differs at [96, 1]: E a> 1.1479423e-05 E b> 7.435147e-05 E Data differs at [103, 1]: E a> 7.233171e-05 E b> 5.279052e-10 E Data differs at [104, 1]: E a> 2.0314612e-06 E b> 0.0035732575 E ... E 13493 different pixels found (29.61% different). E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword NAXIS2 has different values: E a> 255 E b> 257 E Keyword SLTSIZE2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f4842a42f10>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError _______________________ test_nis_wfss_spec3[s00104-x1d] ________________________ run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits'} suffix = 'x1d', source_id = 's00104' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (EXTRACT1D, 1): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E E Data contains differences: E Column FLUX data differs in row 161: E a> nan E b> 0.02055506829163751 E Column FLUX data differs in row 162: E a> 0.020566550871851032 E b> 0.009067604615706314 E Column FLUX data differs in row 163: E a> 0.009072489957081147 E b> 0.0037622867952118596 E Column FLUX data differs in row 164: E a> 0.0037641753564277825 E b> 0.0014371262123989322 E Column FLUX data differs in row 165: E a> 0.001437808952700884 E b> 0.0006427779261091129 E Column FLUX data differs in row 166: E a> 0.0006430716156747743 E b> 0.00036997742474840866 E Column FLUX data differs in row 167: E a> 0.00037013865236702227 E b> 0.00019656917044116515 E Column FLUX data differs in row 168: E a> 0.00019664895703308365 E b> 9.840838855921807e-05 E Column FLUX data differs in row 169: E a> 9.844657628756582e-05 E b> 7.485421522527449e-05 E Column FLUX data differs in row 177: E a> 0.00010259910570628918 E b> 0.00011531181404241202 E ...668 additional difference(s) found. E ... E 678 different table data element(s) found (11.41% different). E E Extension HDU 2 (EXTRACT1D, 2): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Table rows differ: E a: 329 E b: 331 E No further data comparison performed. E E Extension HDU 3 (EXTRACT1D, 3): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E E Data contains differences: E Column FLUX data differs in row 156: E a> 0.07727562031030033 E b> 0.07723304687280258 E Column NPIXELS data differs in row 89: E a> 253.0 E ? ^ E b> 254.0 E ? ^ E Column NPIXELS data differs in row 102: E a> 251.0 E ? ^ E b> 252.0 E ? ^ E Column NPIXELS data differs in row 146: E a> 250.0 E ? ^ E b> 251.0 E ? ^ E Column SB_ERROR data differs in row 88: E a> 16.91110441985148 E b> 16.91261606116817 E Column SB_ERROR data differs in row 89: E a> 7.536648997547137 E b> 7.518632953218416 E Column SB_ERROR data differs in row 90: E a> 3.1066664117794707 E b> 3.1072979112598365 E Column SB_ERROR data differs in row 91: E a> 1.136964134279896 E b> 1.136820820343384 E Column SB_ERROR data differs in row 92: E a> 0.4257353952459227 E b> 0.4258406820652758 E Column SB_ERROR data differs in row 93: E a> 0.22981130276975484 E b> 0.229915106802338 E ...95 additional difference(s) found. E ... E 105 different table data element(s) found (3.28% different). E E Extension HDU 4 (EXTRACT1D, 4): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E E Data contains differences: E Column FLUX data differs in row 88: E a> 0.06362001883711443 E b> 0.06369133476448503 E Column FLUX data differs in row 89: E a> 0.029826782742881017 E b> 0.02981598052410249 E Column NPIXELS data differs in row 88: E a> 249.0 E b> 251.0 E Column NPIXELS data differs in row 89: E a> 252.0 E ? ^ E b> 254.0 E ? ^ E Column NPIXELS data differs in row 90: E a> 250.0 E ? ^ E b> 252.0 E ? ^ E Column NPIXELS data differs in row 91: E a> 251.0 E ? ^ E b> 253.0 E ? ^ E Column NPIXELS data differs in row 92: E a> 254.0 E ? ^ E b> 256.0 E ? ^ E Column NPIXELS data differs in row 93: E a> 253.0 E ? ^ E b> 255.0 E ? ^ E Column NPIXELS data differs in row 94: E a> 255.0 E ? ^ E b> 257.0 E ? ^ E Column NPIXELS data differs in row 95: E a> 253.0 E ? ^ E b> 255.0 E ? ^ E ...239 additional difference(s) found. E ... E 249 different table data element(s) found (7.44% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484276aac0>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError _______________________ test_nis_wfss_spec3[s00104-c1d] ________________________ run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits'} suffix = 'c1d', source_id = 's00104' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (COMBINE1D, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 408 E b> 411 E E Data contains differences: E Table rows differ: E a: 408 E b: 411 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f4842574880>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError =============================== warnings summary =============================== miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py: 17 warnings /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/asdf/schema.py:301: AsdfWarning: Unable to locate schema file for 'tag:stsci.edu:jwst_pipeline/niriss-soss-0.7.0': 'http://stsci.edu/schemas/jwst_pipeline/niriss-soss-0.7.0' warnings.warn(msg.format(tag, schema_uri), AsdfWarning) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/extract_1d/soss_extract/soss_utils.py:125: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations if np.int(dimy / xos) in [96, 256, 252, 2040, 2048]: miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/extract_1d/soss_extract/soss_utils.py:127: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations ynative = np.int(dimy / yos) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py: 33058 warnings /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/extract_1d/soss_extract/soss_centroids.py:34: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations miny = np.int(np.fmax(np.around(ypos - halfwidth), 0)) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py: 33058 warnings /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/extract_1d/soss_extract/soss_centroids.py:35: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations maxy = np.int(np.fmin(np.around(ypos + halfwidth + 1), dimy)) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py: 15573 warnings /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/extract_1d/soss_extract/soss_centroids.py:114: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations irow = np.int(np.around(ycom)) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py: 15573 warnings /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/extract_1d/soss_extract/soss_centroids.py:115: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations miny = np.int(np.fmax(np.around(ycom) - halfwidth, 0)) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py: 15573 warnings /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/extract_1d/soss_extract/soss_centroids.py:116: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations maxy = np.int(np.fmin(np.around(ycom) + halfwidth + 1, dimy)) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/resample/resample_utils.py:181: RuntimeWarning: var_rnoise array not available. Setting drizzle weight map to 1 warnings.warn("var_rnoise array not available. Setting drizzle weight map to 1", -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html - generated html file: file:///internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmp82h_rf51/regtest_report.html - =========================== short test summary info ============================ FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[bsub] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_bsub.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_bsub.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-07 Extension HDU 1 (SCI, 1): Data contains differences: Data differs at [5, 5]: a> 0.82082546 b> 0.82067204 Data differs at [6, 5]: a> 0.089759365 b> 0.08975724 Data differs at [7, 5]: a> 1.203846 b> 1.2038013 Data differs at [8, 5]: a> -0.17252588 b> -0.17267835 Data differs at [9, 5]: a> -0.060819507 b> -0.06097293 Data differs at [10, 5]: a> -0.06569576 b> -0.065849185 Data differs at [11, 5]: a> -0.083259344 b> -0.083412886 Data differs at [12, 5]: a> -0.038711846 b> -0.03883761 Data differs at [13, 5]: a> -0.15667588 b> -0.15680462 Data differs at [14, 5]: a> 0.027448654 b> 0.027335584 ... 4155780 different pixels found (99.08% different). assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f48aa5cc880>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[cal] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_cal.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_cal.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-07 Extension HDU 1 (SCI, 1): Headers contain differences: Headers have different number of cards: a: 56 b: 58 Extra keyword 'SRCDEC' in b: -30.40553434784723 Extra keyword 'SRCRA' in b: 3.592040812067641 Keyword SLTSTRT1 has different values: a> 1389 ? - b> 1390 ? + Keyword SLTSTRT2 has different values: a> 1113 ? ^ b> 1114 ? ^ Data contains differences: Data differs at [1, 125]: a> 0.0 b> 1363.4772 Data differs at [2, 125]: a> 0.0 b> 1314.6934 Data differs at [3, 125]: a> 0.0 b> 1513.2789 Data differs at [4, 125]: a> 0.0 b> 1438.8994 Data differs at [5, 125]: a> 0.0 b> 1932.6174 Data differs at [6, 125]: a> 0.0 b> 1949.8593 Data differs at [7, 125]: a> 0.0 b> 2132.382 Data differs at [8, 125]: a> 0.0 b> 1579.2274 Data differs at [9, 125]: a> 0.0 b> 1932.2921 Data differs at [10, 125]: a> 0.0 b> 1362.5513 ... 15249 different pixels found (19.22% different). Extension HDU 2 (DQ, 1): Data contains differences: Data differs at [1, 1]: a> 1 b> 5 Data differs at [2, 1]: a> 1 b> 5 Data differs at [5, 1]: a> 1 b> 5 Data differs at [16, 1]: a> 1 b> 5 Data differs at [17, 1]: a> 1 b> 5 Data differs at [28, 1]: a> 1 b> 5 Data differs at [32, 1]: a> 5 b> 1 Data differs at [44, 1]: a> 5 b> 1 Data differs at [46, 1]: a> 1 b> 16777221 Data differs at [48, 1]: a> 1 b> 5 ... 13566 different pixels found (17.10% different). Extension HDU 3 (ERR, 1): Data contains differences: Data differs at [1, 125]: a> 0.0 b> 191.5967 Data differs at [2, 125]: a> 0.0 b> 186.99792 Data differs at [3, 125]: a> 0.0 b> 190.20242 Data differs at [4, 125]: a> 0.0 b> 188.07532 Data differs at [5, 125]: a> 0.0 b> 192.07884 Data differs at [6, 125]: a> 0.0 b> 199.28291 Data differs at [7, 125]: a> 0.0 b> 197.129 Data differs at [8, 125]: a> 0.0 b> 191.76932 Data differs at [9, 125]: a> 0.0 b> 192.68011 Data differs at [10, 125]: a> 0.0 b> 192.26921 ... 15246 different pixels found (19.22% different). Extension HDU 4 (WAVELENGTH, 1): Data contains differences: Data differs at [1, 1]: a> 1.9013734 b> 1.8966796 Data differs at [2, 1]: a> 1.9013734 b> 1.8966796 Data differs at [3, 1]: a> 1.9013734 b> 1.8966796 Data differs at [4, 1]: a> 1.9013734 b> 1.8966796 Data differs at [5, 1]: a> 1.9013734 b> 1.8966796 Data differs at [6, 1]: a> 1.9013734 b> 1.8966796 Data differs at [7, 1]: a> 1.9013734 b> 1.8966796 Data differs at [8, 1]: a> 1.9013734 b> 1.8966796 Data differs at [9, 1]: a> 1.9013734 b> 1.8966796 Data differs at [10, 1]: a> 1.9013734 b> 1.8966796 ... 79339 different pixels found (100.00% different). Extension HDU 5 (VAR_POISSON, 1): Data contains differences: Data differs at [1, 125]: a> 0.0 b> 36424.82 Data differs at [2, 125]: a> 0.0 b> 34599.67 Data differs at [3, 125]: a> 0.0 b> 35775.6 Data differs at [4, 125]: a> 0.0 b> 35013.43 Data differs at [5, 125]: a> 0.0 b> 36640.895 Data differs at [6, 125]: a> 0.0 b> 39414.37 Data differs at [7, 125]: a> 0.0 b> 38401.395 Data differs at [8, 125]: a> 0.0 b> 36373.76 Data differs at [9, 125]: a> 0.0 b> 36752.85 Data differs at [10, 125]: a> 0.0 b> 36637.6 ... 15248 different pixels found (19.22% different). Extension HDU 6 (VAR_RNOISE, 1): Data contains differences: Data differs at [1, 125]: a> 0.0 b> 261.33878 Data differs at [2, 125]: a> 0.0 b> 348.2399 Data differs at [3, 125]: a> 0.0 b> 372.7315 Data differs at [4, 125]: a> 0.0 b> 334.8433 Data differs at [5, 125]: a> 0.0 b> 208.7587 Data differs at [6, 125]: a> 0.0 b> 254.74019 Data differs at [7, 125]: a> 0.0 b> 404.5371 Data differs at [8, 125]: a> 0.0 b> 372.12772 Data differs at [9, 125]: a> 0.0 b> 327.5682 Data differs at [10, 125]: a> 0.0 b> 307.2687 ... 15247 different pixels found (19.22% different). Extension HDU 7 (VAR_FLAT, 1): Data contains differences: Data differs at [1, 125]: a> 0.0 b> 23.128403 Data differs at [2, 125]: a> 0.0 b> 20.311348 Data differs at [3, 125]: a> 0.0 b> 28.629303 Data differs at [4, 125]: a> 0.0 b> 24.053085 Data differs at [5, 125]: a> 0.0 b> 44.628468 Data differs at [6, 125]: a> 0.0 b> 44.564407 Data differs at [7, 125]: a> 0.0 b> 53.908096 Data differs at [8, 125]: a> 0.0 b> 29.58187 Data differs at [9, 125]: a> 0.0 b> 45.20958 Data differs at [10, 125]: a> 0.0 b> 22.578938 ... 15245 different pixels found (19.22% different). Extension HDU 8 (SCI, 2): Headers contain differences: Headers have different number of cards: a: 32 b: 34 Extra keyword 'SRCDEC' in b: -30.40018067148927 Extra keyword 'SRCRA' in b: 3.586356414491374 Keyword SLTSTRT1 has different values: a> 1032 ? ^ b> 1033 ? ^ Keyword SLTSTRT2 has different values: a> 1314 ? ^ b> 1315 ? ^ Data contains differences: Data differs at [1, 85]: a> 0.0 b> 3985.8796 Data differs at [2, 85]: a> 0.0 b> 4118.5845 Data differs at [3, 85]: a> 0.0 b> -58.99588 Data differs at [4, 85]: a> 0.0 b> 4555.2866 Data differs at [5, 85]: a> 0.0 b> 5155.0547 Data differs at [6, 85]: a> 0.0 b> 4215.951 Data differs at [7, 85]: a> 0.0 b> 4324.001 Data differs at [8, 85]: a> 0.0 b> 4124.1924 Data differs at [9, 85]: a> 0.0 b> 3861.4543 Data differs at [10, 85]: a> 0.0 b> 4730.775 ... 15957 different pixels found (28.11% different). Extension HDU 9 (DQ, 2): Data contains differences: Data differs at [2, 1]: a> 5 b> 1 Data differs at [3, 1]: a> 5 b> 1 Data differs at [4, 1]: a> 5 b> 1 Data differs at [12, 1]: a> 1 b> 5 Data differs at [13, 1]: a> 1 b> 5 Data differs at [15, 1]: a> 5 b> 8388613 Data differs at [18, 1]: a> 16779265 b> 1 Data differs at [20, 1]: a> 1 b> 35914753 Data differs at [46, 1]: a> 5 b> 1 Data differs at [47, 1]: a> 5 b> 1 ... 9663 different pixels found (17.02% different). Extension HDU 10 (ERR, 2): Data contains differences: Data differs at [1, 85]: a> 0.0 b> 300.3294 Data differs at [2, 85]: a> 0.0 b> 280.55493 Data differs at [3, 85]: a> 0.0 b> 85.338104 Data differs at [4, 85]: a> 0.0 b> 275.2996 Data differs at [5, 85]: a> 0.0 b> 305.31372 Data differs at [6, 85]: a> 0.0 b> 287.1998 Data differs at [7, 85]: a> 0.0 b> 280.49844 Data differs at [8, 85]: a> 0.0 b> 278.29352 Data differs at [9, 85]: a> 0.0 b> 285.17935 Data differs at [10, 85]: a> 0.0 b> 288.2807 ... 15958 different pixels found (28.11% different). Extension HDU 11 (WAVELENGTH, 2): Data contains differences: Data differs at [1, 1]: a> 1.7154493 b> 1.7107556 Data differs at [2, 1]: a> 1.7154493 b> 1.7107556 Data differs at [3, 1]: a> 1.7154493 b> 1.7107556 Data differs at [4, 1]: a> 1.7154493 b> 1.7107556 Data differs at [5, 1]: a> 1.7154493 b> 1.7107556 Data differs at [6, 1]: a> 1.7154493 b> 1.7107556 Data differs at [7, 1]: a> 1.7154493 b> 1.7107556 Data differs at [8, 1]: a> 1.7154493 b> 1.7107556 Data differs at [9, 1]: a> 1.7154493 b> 1.7107556 Data differs at [10, 1]: a> 1.7154493 b> 1.7107556 ... 56772 different pixels found (100.00% different). Extension HDU 12 (VAR_POISSON, 2): Data contains differences: Data differs at [1, 85]: a> 0.0 b> 88679.945 Data differs at [2, 85]: a> 0.0 b> 78039.22 Data differs at [3, 85]: a> 0.0 b> 2036.2072 Data differs at [4, 85]: a> 0.0 b> 75026.336 Data differs at [5, 85]: a> 0.0 b> 92242.55 Data differs at [6, 85]: a> 0.0 b> 81677.06 Data differs at [7, 85]: a> 0.0 b> 77789.305 Data differs at [8, 85]: a> 0.0 b> 76522.234 Data differs at [9, 85]: a> 0.0 b> 80232.84 Data differs at [10, 85]: a> 0.0 b> 82342.11 ... 15950 different pixels found (28.09% different). Extension HDU 13 (VAR_RNOISE, 2): Data contains differences: Data differs at [1, 85]: a> 0.0 b> 1324.0547 Data differs at [2, 85]: a> 0.0 b> 479.76517 Data differs at [3, 85]: a> 0.0 b> 5246.3857 Data differs at [4, 85]: a> 0.0 b> 524.931 Data differs at [5, 85]: a> 0.0 b> 642.7656 Data differs at [6, 85]: a> 0.0 b> 598.9909 Data differs at [7, 85]: a> 0.0 b> 667.98175 Data differs at [8, 85]: a> 0.0 b> 725.91876 Data differs at [9, 85]: a> 0.0 b> 904.42816 Data differs at [10, 85]: a> 0.0 b> 503.98715 ... 15959 different pixels found (28.11% different). Extension HDU 14 (VAR_FLAT, 2): Data contains differences: Data differs at [1, 85]: a> 0.0 b> 193.7494 Data differs at [2, 85]: a> 0.0 b> 192.08748 Data differs at [4, 85]: a> 0.0 b> 238.59854 Data differs at [5, 85]: a> 0.0 b> 331.16757 Data differs at [6, 85]: a> 0.0 b> 207.66754 Data differs at [7, 85]: a> 0.0 b> 222.09827 Data differs at [8, 85]: a> 0.0 b> 199.12457 Data differs at [9, 85]: a> 0.0 b> 189.98973 Data differs at [10, 85]: a> 0.0 b> 259.66467 Data differs at [11, 85]: a> 0.0 b> 166.92542 ... 15957 different pixels found (28.11% different). Extension HDU 15 (SCI, 3): Headers contain differences: Headers have different number of cards: a: 32 b: 34 Extra keyword 'SRCDEC' in b: -30.39411309485647 Extra keyword 'SRCRA' in b: 3.585624631060788 Keyword NAXIS2 has different values: a> 321 b> 322 Keyword SLTSIZE1 has different values: a> 181 b> 183 Keyword SLTSIZE2 has different values: a> 321 b> 322 Keyword SLTSTRT2 has different values: a> 1177 ? ^ b> 1178 ? ^ Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 16 (DQ, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 17 (ERR, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 18 (WAVELENGTH, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 19 (VAR_POISSON, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 20 (VAR_RNOISE, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 21 (VAR_FLAT, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 22 (SCI, 4): Headers contain differences: Headers have different number of cards: a: 32 b: 34 Extra keyword 'SRCDEC' in b: -30.39163095906152 Extra keyword 'SRCRA' in b: 3.59464814053007 Keyword NAXIS2 has different values: a> 228 b> 229 Keyword SLTSIZE1 has different values: a> 197 b> 199 Keyword SLTSIZE2 has different values: a> 228 b> 229 Keyword SLTSTRT2 has different values: a> 801 b> 802 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 23 (DQ, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 24 (ERR, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 25 (WAVELENGTH, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 26 (VAR_POISSON, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 27 (VAR_RNOISE, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 28 (VAR_FLAT, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 29 (SCI, 5): Headers contain differences: Headers have different number of cards: a: 32 b: 34 Extra keyword 'SRCDEC' in b: -30.39602892937478 Extra keyword 'SRCRA' in b: 3.58789771169632 Keyword NAXIS2 has different values: a> 203 b> 205 Keyword SLTSIZE2 has different values: a> 203 b> 205 Keyword SLTSTRT1 has different values: a> 857 b> 858 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 30 (DQ, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 31 (ERR, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 32 (WAVELENGTH, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 33 (VAR_POISSON, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 34 (VAR_RNOISE, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 35 (VAR_FLAT, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 36 (SCI, 6): Headers contain differences: Headers have different number of cards: a: 32 b: 34 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Keyword SLTSIZE1 has different values: a> 133 b> 134 Keyword SLTSTRT2 has different values: a> 217 b> 218 Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 37 (DQ, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 38 (ERR, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 39 (WAVELENGTH, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 40 (VAR_POISSON, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 41 (VAR_RNOISE, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 42 (VAR_FLAT, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 43 (SCI, 7): Headers contain differences: Headers have different number of cards: a: 32 b: 34 Extra keyword 'SRCDEC' in b: -30.40926138863649 Extra keyword 'SRCRA' in b: 3.579587921874186 Keyword NAXIS2 has different values: a> 209 b> 211 Keyword SLTSIZE1 has different values: a> 117 b> 119 Keyword SLTSIZE2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 44 (DQ, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 45 (ERR, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 46 (WAVELENGTH, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 47 (VAR_POISSON, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 48 (VAR_RNOISE, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 49 (VAR_FLAT, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 50 (SCI, 8): Headers contain differences: Headers have different number of cards: a: 32 b: 34 Extra keyword 'SRCDEC' in b: -30.38980139908971 Extra keyword 'SRCRA' in b: 3.600004699000835 Keyword NAXIS2 has different values: a> 236 b> 237 Keyword SLTSIZE1 has different values: a> 10 b> 11 Keyword SLTSIZE2 has different values: a> 236 b> 237 Keyword SLTSTRT2 has different values: a> 521 b> 522 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 51 (DQ, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 52 (ERR, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 53 (WAVELENGTH, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 54 (VAR_POISSON, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 55 (VAR_RNOISE, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 56 (VAR_FLAT, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 57 (SCI, 9): Headers contain differences: Headers have different number of cards: a: 32 b: 34 Extra keyword 'SRCDEC' in b: -30.3860237133523 Extra keyword 'SRCRA' in b: 3.569829752935783 Keyword SLTSTRT1 has different values: a> 25 b> 26 Keyword SLTSTRT2 has different values: a> 1791 ? ^ b> 1792 ? ^ Data contains differences: Data differs at [1, 102]: a> 0.0 b> 566.4476 Data differs at [2, 102]: a> 0.0 b> 338.4689 Data differs at [3, 102]: a> 0.0 b> 159.03731 Data differs at [4, 102]: a> 0.0 b> 145.91112 Data differs at [5, 102]: a> 0.0 b> 305.26697 Data differs at [6, 102]: a> 0.0 b> 195.4081 Data differs at [7, 102]: a> 0.0 b> 491.52173 Data differs at [8, 102]: a> 0.0 b> 190.26485 Data differs at [9, 102]: a> 0.0 b> 597.8491 Data differs at [10, 102]: a> 0.0 b> 1145.7515 ... 15732 different pixels found (28.51% different). Extension HDU 58 (DQ, 9): Data contains differences: Data differs at [15, 1]: a> 1 b> 5 Data differs at [16, 1]: a> 1 b> 5 Data differs at [20, 1]: a> 1 b> 5 Data differs at [21, 1]: a> 1 b> 5 Data differs at [28, 1]: a> 1 b> 5 Data differs at [32, 1]: a> 5 b> 1 Data differs at [67, 1]: a> 1 b> 5 Data differs at [68, 1]: a> 1 b> 5 Data differs at [70, 1]: a> 5 b> 1 Data differs at [71, 1]: a> 5 b> 1 ... 8873 different pixels found (16.08% different). Extension HDU 59 (ERR, 9): Data contains differences: Data differs at [1, 102]: a> 0.0 b> 152.93675 Data differs at [2, 102]: a> 0.0 b> 148.28142 Data differs at [3, 102]: a> 0.0 b> 146.94443 Data differs at [4, 102]: a> 0.0 b> 134.35672 Data differs at [5, 102]: a> 0.0 b> 141.13506 Data differs at [6, 102]: a> 0.0 b> 136.90057 Data differs at [7, 102]: a> 0.0 b> 144.3461 Data differs at [8, 102]: a> 0.0 b> 134.80638 Data differs at [9, 102]: a> 0.0 b> 141.16875 Data differs at [10, 102]: a> 0.0 b> 148.1953 ... 15729 different pixels found (28.51% different). Extension HDU 60 (WAVELENGTH, 9): Data contains differences: Data differs at [1, 1]: a> 1.7922435 b> 1.7875497 Data differs at [2, 1]: a> 1.7922435 b> 1.7875497 Data differs at [3, 1]: a> 1.7922435 b> 1.7875497 Data differs at [4, 1]: a> 1.7922435 b> 1.7875497 Data differs at [5, 1]: a> 1.7922435 b> 1.7875497 Data differs at [6, 1]: a> 1.7922435 b> 1.7875497 Data differs at [7, 1]: a> 1.7922435 b> 1.7875497 Data differs at [8, 1]: a> 1.7922435 b> 1.7875497 Data differs at [9, 1]: a> 1.7922435 b> 1.7875497 Data differs at [10, 1]: a> 1.7922435 b> 1.7875497 ... 55176 different pixels found (100.00% different). Extension HDU 61 (VAR_POISSON, 9): Data contains differences: Data differs at [1, 102]: a> 0.0 b> 22543.514 Data differs at [2, 102]: a> 0.0 b> 21227.89 Data differs at [3, 102]: a> 0.0 b> 20556.422 Data differs at [4, 102]: a> 0.0 b> 17923.559 Data differs at [5, 102]: a> 0.0 b> 19693.129 Data differs at [6, 102]: a> 0.0 b> 18591.36 Data differs at [7, 102]: a> 0.0 b> 20624.27 Data differs at [8, 102]: a> 0.0 b> 17996.79 Data differs at [9, 102]: a> 0.0 b> 19779.443 Data differs at [10, 102]: a> 0.0 b> 21791.436 ... 15731 different pixels found (28.51% different). Extension HDU 62 (VAR_RNOISE, 9): Data contains differences: Data differs at [1, 102]: a> 0.0 b> 842.26373 Data differs at [2, 102]: a> 0.0 b> 758.1521 Data differs at [3, 102]: a> 0.0 b> 1035.9584 Data differs at [4, 102]: a> 0.0 b> 127.92964 Data differs at [5, 102]: a> 0.0 b> 224.8679 Data differs at [6, 102]: a> 0.0 b> 149.96489 Data differs at [7, 102]: a> 0.0 b> 208.6493 Data differs at [8, 102]: a> 0.0 b> 175.55556 Data differs at [9, 102]: a> 0.0 b> 145.00322 Data differs at [10, 102]: a> 0.0 b> 154.8307 ... 15730 different pixels found (28.51% different). Extension HDU 63 (VAR_FLAT, 9): Data contains differences: Data differs at [1, 102]: a> 0.0 b> 3.8734808 Data differs at [2, 102]: a> 0.0 b> 1.3375401 Data differs at [3, 102]: a> 0.0 b> 0.28612608 Data differs at [4, 102]: a> 0.0 b> 0.23972379 Data differs at [5, 102]: a> 0.0 b> 1.1103776 Data differs at [6, 102]: a> 0.0 b> 0.44549134 Data differs at [7, 102]: a> 0.0 b> 2.8770452 Data differs at [8, 102]: a> 0.0 b> 0.4184726 Data differs at [9, 102]: a> 0.0 b> 4.171244 Data differs at [10, 102]: a> 0.0 b> 15.577756 ... 15666 different pixels found (28.39% different). Extension HDU 64 (SCI, 10): Headers contain differences: Headers have different number of cards: a: 32 b: 34 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 189 b> 191 Keyword SLTSIZE1 has different values: a> 139 b> 140 Keyword SLTSIZE2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 65 (DQ, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 66 (ERR, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 67 (WAVELENGTH, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 68 (VAR_POISSON, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 69 (VAR_RNOISE, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 70 (VAR_FLAT, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f490510c2e0>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[esec] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_esec.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_esec.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-07 Extension HDU 1 (SCI, 1): Data contains differences: Data differs at [5, 5]: a> 1.3314703 b> 1.3312213 Data differs at [6, 5]: a> 0.14559968 ? - ^ b> 0.14559624 ? ^^ Data differs at [7, 5]: a> 1.9527721 b> 1.9526997 Data differs at [8, 5]: a> -0.27985618 b> -0.2801035 Data differs at [9, 5]: a> -0.09865601 b> -0.09890488 Data differs at [10, 5]: a> -0.10656584 b> -0.106814705 Data differs at [11, 5]: a> -0.13505593 b> -0.13530499 Data differs at [12, 5]: a> -0.062794924 b> -0.06299893 Data differs at [13, 5]: a> -0.2541457 ? ^ ^ b> -0.25435454 ? ^^ ^ Data differs at [14, 5]: a> 0.044524774 b> 0.04434136 ... 4155840 different pixels found (99.08% different). Extension HDU 2 (ERR, 1): Data contains differences: Data differs at [2033, 9]: a> 0.05917287 ? ^^ b> 0.059172016 ? ^^^ Data differs at [42, 11]: a> 0.00987731 ? ^^ b> 0.009877645 ? ^^^ Data differs at [651, 11]: a> 0.0056100776 b> 0.005610489 Data differs at [1230, 11]: a> 0.0056353775 ? ^^^ b> 0.0056358306 ? + ^^ Data differs at [629, 20]: a> 0.016101867 b> 0.016102336 Data differs at [941, 20]: a> 0.009797767 b> 0.009798015 Data differs at [552, 23]: a> 0.031580392 b> 0.031581085 Data differs at [681, 33]: a> 0.009312123 ? -- b> 0.009312377 ? ++ Data differs at [707, 35]: a> 0.013522971 b> 0.013523482 Data differs at [849, 37]: a> 0.032711904 b> 0.032712955 ... 184 different pixels found (0.00% different). Extension HDU 6 (VAR_FLAT, 1): Data contains differences: Data differs at [1220, 32]: a> 0.017103717 b> 0.017103262 Data differs at [617, 40]: a> 0.00077723514 ? - - b> 0.0007774231 ? + Data differs at [1193, 49]: a> 0.0016725103 ? --- b> 0.0016723832 ? +++ Data differs at [1479, 56]: a> 0.07173308 b> 0.07173571 Data differs at [388, 65]: a> 0.0078134965 ? ^^ - b> 0.007813306 ? ^^ Data differs at [1987, 80]: a> 0.014090647 ? -- b> 0.014090216 ? ++ Data differs at [689, 94]: a> 0.013003772 b> 0.013004473 Data differs at [1061, 113]: a> 0.00065081735 b> 0.0006509779 Data differs at [358, 117]: a> 0.00048274992 b> 0.00048286832 Data differs at [1185, 134]: a> 0.0008182664 b> 0.00081848237 ... 178 different pixels found (0.00% different). assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484e2df6a0>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[extract_2d] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_extract_2d.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_extract_2d.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-07 Extension HDU 1 (SCI, 1): Headers contain differences: Headers have different number of cards: a: 47 b: 49 Extra keyword 'SRCDEC' in b: -30.40553434784723 Extra keyword 'SRCRA' in b: 3.592040812067641 Keyword SLTSTRT1 has different values: a> 1389 ? - b> 1390 ? + Keyword SLTSTRT2 has different values: a> 1113 ? ^ b> 1114 ? ^ Data contains differences: Data differs at [1, 1]: a> 0.07601866 b> 0.09491855 Data differs at [2, 1]: a> 0.091159254 b> 0.020518458 Data differs at [3, 1]: a> 0.063286245 b> 0.07317534 Data differs at [4, 1]: a> 0.05025898 b> 0.07113351 Data differs at [5, 1]: a> 0.016595162 b> 0.075566575 Data differs at [6, 1]: a> 0.07393524 b> 0.061039086 Data differs at [7, 1]: a> 0.06604941 b> 0.04007152 Data differs at [8, 1]: a> 0.006939598 b> 0.0797044 Data differs at [9, 1]: a> 0.06425873 b> 0.057408143 Data differs at [10, 1]: a> 0.06636904 b> 0.07423474 ... 79333 different pixels found (99.99% different). Extension HDU 2 (DQ, 1): Data contains differences: Data differs at [1, 1]: a> 0 b> 4 Data differs at [2, 1]: a> 0 b> 4 Data differs at [5, 1]: a> 0 b> 4 Data differs at [16, 1]: a> 0 b> 4 Data differs at [17, 1]: a> 0 b> 4 Data differs at [28, 1]: a> 0 b> 4 Data differs at [32, 1]: a> 4 b> 0 Data differs at [44, 1]: a> 4 b> 0 Data differs at [46, 1]: a> 0 b> 16777221 Data differs at [48, 1]: a> 0 b> 4 ... 13727 different pixels found (17.30% different). Extension HDU 3 (ERR, 1): Data contains differences: Data differs at [1, 1]: a> 0.021101505 b> 0.022167083 Data differs at [2, 1]: a> 0.021743273 b> 0.021564962 Data differs at [3, 1]: a> 0.022068132 b> 0.022213832 Data differs at [4, 1]: a> 0.020673273 b> 0.021578563 Data differs at [5, 1]: a> 0.019631913 b> 0.022153186 Data differs at [6, 1]: a> 0.021232158 b> 0.020933269 Data differs at [7, 1]: a> 0.020554062 b> 0.020602789 Data differs at [8, 1]: a> 0.019950496 b> 0.02096566 Data differs at [9, 1]: a> 0.021507863 b> 0.021246059 Data differs at [10, 1]: a> 0.021294583 b> 0.021775313 ... 79315 different pixels found (99.97% different). Extension HDU 4 (WAVELENGTH, 1): Data contains differences: Data differs at [1, 1]: a> 1.9013734 b> 1.8966796 Data differs at [2, 1]: a> 1.9013734 b> 1.8966796 Data differs at [3, 1]: a> 1.9013734 b> 1.8966796 Data differs at [4, 1]: a> 1.9013734 b> 1.8966796 Data differs at [5, 1]: a> 1.9013734 b> 1.8966796 Data differs at [6, 1]: a> 1.9013734 b> 1.8966796 Data differs at [7, 1]: a> 1.9013734 b> 1.8966796 Data differs at [8, 1]: a> 1.9013734 b> 1.8966796 Data differs at [9, 1]: a> 1.9013734 b> 1.8966796 Data differs at [10, 1]: a> 1.9013734 b> 1.8966796 ... 79339 different pixels found (100.00% different). Extension HDU 5 (VAR_POISSON, 1): Data contains differences: Data differs at [1, 1]: a> 0.00044092129 b> 0.0004695498 Data differs at [2, 1]: a> 0.0004693386 b> 0.00045110442 Data differs at [3, 1]: a> 0.00046863322 b> 0.00047672258 Data differs at [4, 1]: a> 0.0004243046 b> 0.0004620551 Data differs at [5, 1]: a> 0.00038146426 b> 0.00048392726 Data differs at [6, 1]: a> 0.0004464778 b> 0.00043413675 Data differs at [7, 1]: a> 0.0004173837 b> 0.00041826177 Data differs at [8, 1]: a> 0.00039347596 b> 0.00043684588 Data differs at [9, 1]: a> 0.00045359458 b> 0.00044724232 Data differs at [10, 1]: a> 0.00044899594 b> 0.00046903442 ... 79171 different pixels found (99.79% different). Extension HDU 6 (VAR_RNOISE, 1): Data contains differences: Data differs at [1, 1]: a> 4.2842657e-06 b> 2.1721587e-05 Data differs at [2, 1]: a> 3.3317215e-06 b> 1.3938283e-05 Data differs at [3, 1]: a> 1.8322411e-05 b> 1.6667349e-05 Data differs at [4, 1]: a> 3.0500287e-06 b> 3.5189762e-06 Data differs at [5, 1]: a> 3.9447364e-06 b> 6.7672145e-06 Data differs at [6, 1]: a> 4.2621227e-06 b> 4.021001e-06 Data differs at [7, 1]: a> 5.034949e-06 b> 6.1944747e-06 Data differs at [8, 1]: a> 4.545765e-06 b> 2.6388068e-06 Data differs at [9, 1]: a> 8.945237e-06 b> 4.1124395e-06 Data differs at [10, 1]: a> 4.4113017e-06 b> 5.064231e-06 ... 75727 different pixels found (95.45% different). Extension HDU 7 (VAR_FLAT, 1): Data contains differences: Data differs at [17, 1]: a> 4.913979e-08 b> 1.9260558e-07 Data differs at [19, 1]: a> 1.4055821e-07 b> 1.3462205e-08 Data differs at [20, 1]: a> 7.747428e-09 b> 1.1106848e-07 Data differs at [21, 1]: a> 1.4606553e-07 b> 4.5921e-08 Data differs at [45, 1]: a> 1.017291e-08 b> 1.1921217e-07 Data differs at [47, 1]: a> 9.3021155e-09 b> 1.0938525e-07 Data differs at [48, 1]: a> 3.762465e-08 b> 1.4567745e-07 Data differs at [51, 1]: a> 1.82091e-07 b> 5.269996e-09 Data differs at [55, 1]: a> 1.7381811e-07 b> 1.7002574e-08 Data differs at [61, 1]: a> 1.0950979e-07 b> 2.4832877e-07 ... 50000 different pixels found (63.02% different). Extension HDU 8 (SCI, 2): Headers contain differences: Headers have different number of cards: a: 23 b: 25 Extra keyword 'SRCDEC' in b: -30.40018067148927 Extra keyword 'SRCRA' in b: 3.586356414491374 Keyword SLTSTRT1 has different values: a> 1032 ? ^ b> 1033 ? ^ Keyword SLTSTRT2 has different values: a> 1314 ? ^ b> 1315 ? ^ Data contains differences: Data differs at [1, 1]: a> 0.19990797 b> 0.18290745 Data differs at [2, 1]: a> 0.23067056 b> 0.2477534 Data differs at [3, 1]: a> 0.23131803 b> 0.2964172 Data differs at [4, 1]: a> 0.20412807 b> 0.2580659 Data differs at [5, 1]: a> 0.2401229 b> 0.2511261 Data differs at [6, 1]: a> 0.23832908 b> 0.19198704 Data differs at [7, 1]: a> 0.22189732 b> 0.17562482 Data differs at [8, 1]: a> 0.14300282 b> 0.17584698 Data differs at [9, 1]: a> 0.15427624 b> 0.18087307 Data differs at [10, 1]: a> 0.20676768 b> 0.12289692 ... 56770 different pixels found (100.00% different). Extension HDU 9 (DQ, 2): Data contains differences: Data differs at [2, 1]: a> 4 b> 0 Data differs at [3, 1]: a> 4 b> 0 Data differs at [4, 1]: a> 4 b> 0 Data differs at [12, 1]: a> 0 b> 4 Data differs at [13, 1]: a> 0 b> 4 Data differs at [15, 1]: a> 4 b> 8388613 Data differs at [18, 1]: a> 16779265 b> 0 Data differs at [20, 1]: a> 0 b> 35914753 Data differs at [46, 1]: a> 4 b> 0 Data differs at [47, 1]: a> 4 b> 0 ... 9676 different pixels found (17.04% different). Extension HDU 10 (ERR, 2): Data contains differences: Data differs at [1, 1]: a> 0.0224017 b> 0.023020292 Data differs at [2, 1]: a> 0.024187082 b> 0.023029739 Data differs at [3, 1]: a> 0.02411214 b> 0.023737837 Data differs at [4, 1]: a> 0.023702415 b> 0.023137512 Data differs at [5, 1]: a> 0.023448238 b> 0.023216644 Data differs at [6, 1]: a> 0.023274248 b> 0.02180982 Data differs at [7, 1]: a> 0.023105526 b> 0.022139112 Data differs at [8, 1]: a> 0.021588627 b> 0.021680543 Data differs at [9, 1]: a> 0.020922955 b> 0.02214974 Data differs at [10, 1]: a> 0.0227876 b> 0.021650355 ... 56758 different pixels found (99.98% different). Extension HDU 11 (WAVELENGTH, 2): Data contains differences: Data differs at [1, 1]: a> 1.7154493 b> 1.7107556 Data differs at [2, 1]: a> 1.7154493 b> 1.7107556 Data differs at [3, 1]: a> 1.7154493 b> 1.7107556 Data differs at [4, 1]: a> 1.7154493 b> 1.7107556 Data differs at [5, 1]: a> 1.7154493 b> 1.7107556 Data differs at [6, 1]: a> 1.7154493 b> 1.7107556 Data differs at [7, 1]: a> 1.7154493 b> 1.7107556 Data differs at [8, 1]: a> 1.7154493 b> 1.7107556 Data differs at [9, 1]: a> 1.7154493 b> 1.7107556 Data differs at [10, 1]: a> 1.7154493 b> 1.7107556 ... 56772 different pixels found (100.00% different). Extension HDU 12 (VAR_POISSON, 2): Data contains differences: Data differs at [1, 1]: a> 0.0004967198 b> 0.0005257822 Data differs at [2, 1]: a> 0.0005659332 b> 0.0005248566 Data differs at [3, 1]: a> 0.0005600677 b> 0.0005520634 Data differs at [4, 1]: a> 0.00052954094 b> 0.0005299283 Data differs at [5, 1]: a> 0.00054649735 b> 0.0005338184 Data differs at [6, 1]: a> 0.00053486385 b> 0.00047162746 Data differs at [7, 1]: a> 0.0005210768 b> 0.00048540108 Data differs at [8, 1]: a> 0.00046242232 b> 0.00046590794 Data differs at [9, 1]: a> 0.00043405924 b> 0.00048541123 Data differs at [10, 1]: a> 0.0005143815 b> 0.00046457764 ... 56658 different pixels found (99.80% different). Extension HDU 13 (VAR_RNOISE, 2): Data contains differences: Data differs at [1, 1]: a> 4.665698e-06 b> 3.7364505e-06 Data differs at [2, 1]: a> 1.8443272e-05 b> 4.801762e-06 Data differs at [3, 1]: a> 2.0702795e-05 b> 1.0406416e-05 Data differs at [4, 1]: a> 3.1765037e-05 b> 4.660997e-06 Data differs at [5, 1]: a> 2.6672885e-06 b> 4.456551e-06 Data differs at [6, 1]: a> 6.1673345e-06 b> 3.636675e-06 Data differs at [7, 1]: a> 1.2237247e-05 b> 4.381598e-06 Data differs at [8, 1]: a> 3.4235275e-06 b> 3.815099e-06 Data differs at [9, 1]: a> 3.4832394e-06 b> 4.8139077e-06 Data differs at [10, 1]: a> 4.3654472e-06 b> 3.9951915e-06 ... 54296 different pixels found (95.64% different). Extension HDU 14 (VAR_FLAT, 2): Data contains differences: Data differs at [3, 1]: a> 6.248351e-07 b> 1.0150636e-06 Data differs at [4, 1]: a> 4.9849564e-07 b> 7.5511593e-07 Data differs at [6, 1]: a> 6.594963e-07 b> 4.0410734e-07 Data differs at [7, 1]: a> 5.5132745e-07 b> 3.5759572e-07 Data differs at [8, 1]: a> 2.2292639e-07 ? ^ ^ ^ b> 3.2294636e-07 ? ^ ^ ^ Data differs at [9, 1]: a> 2.2759919e-07 b> 3.858297e-07 Data differs at [10, 1]: a> 5.277661e-07 b> 1.6503091e-07 Data differs at [11, 1]: a> 4.2515765e-07 b> 6.758743e-07 Data differs at [12, 1]: a> 4.9715146e-07 b> 7.964099e-07 Data differs at [13, 1]: a> 6.500649e-07 b> 4.54274e-07 ... 42339 different pixels found (74.58% different). Extension HDU 15 (SCI, 3): Headers contain differences: Headers have different number of cards: a: 23 b: 25 Extra keyword 'SRCDEC' in b: -30.39411309485647 Extra keyword 'SRCRA' in b: 3.585624631060788 Keyword NAXIS2 has different values: a> 321 b> 322 Keyword SLTSIZE1 has different values: a> 181 b> 183 Keyword SLTSIZE2 has different values: a> 321 b> 322 Keyword SLTSTRT2 has different values: a> 1177 ? ^ b> 1178 ? ^ Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 16 (DQ, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 17 (ERR, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 18 (WAVELENGTH, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 19 (VAR_POISSON, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 20 (VAR_RNOISE, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 21 (VAR_FLAT, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 22 (SCI, 4): Headers contain differences: Headers have different number of cards: a: 23 b: 25 Extra keyword 'SRCDEC' in b: -30.39163095906152 Extra keyword 'SRCRA' in b: 3.59464814053007 Keyword NAXIS2 has different values: a> 228 b> 229 Keyword SLTSIZE1 has different values: a> 197 b> 199 Keyword SLTSIZE2 has different values: a> 228 b> 229 Keyword SLTSTRT2 has different values: a> 801 b> 802 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 23 (DQ, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 24 (ERR, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 25 (WAVELENGTH, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 26 (VAR_POISSON, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 27 (VAR_RNOISE, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 28 (VAR_FLAT, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 29 (SCI, 5): Headers contain differences: Headers have different number of cards: a: 23 b: 25 Extra keyword 'SRCDEC' in b: -30.39602892937478 Extra keyword 'SRCRA' in b: 3.58789771169632 Keyword NAXIS2 has different values: a> 203 b> 205 Keyword SLTSIZE2 has different values: a> 203 b> 205 Keyword SLTSTRT1 has different values: a> 857 b> 858 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 30 (DQ, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 31 (ERR, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 32 (WAVELENGTH, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 33 (VAR_POISSON, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 34 (VAR_RNOISE, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 35 (VAR_FLAT, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 36 (SCI, 6): Headers contain differences: Headers have different number of cards: a: 23 b: 25 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Keyword SLTSIZE1 has different values: a> 133 b> 134 Keyword SLTSTRT2 has different values: a> 217 b> 218 Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 37 (DQ, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 38 (ERR, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 39 (WAVELENGTH, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 40 (VAR_POISSON, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 41 (VAR_RNOISE, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 42 (VAR_FLAT, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 43 (SCI, 7): Headers contain differences: Headers have different number of cards: a: 23 b: 25 Extra keyword 'SRCDEC' in b: -30.40926138863649 Extra keyword 'SRCRA' in b: 3.579587921874186 Keyword NAXIS2 has different values: a> 209 b> 211 Keyword SLTSIZE1 has different values: a> 117 b> 119 Keyword SLTSIZE2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 44 (DQ, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 45 (ERR, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 46 (WAVELENGTH, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 47 (VAR_POISSON, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 48 (VAR_RNOISE, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 49 (VAR_FLAT, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 50 (SCI, 8): Headers contain differences: Headers have different number of cards: a: 23 b: 25 Extra keyword 'SRCDEC' in b: -30.38980139908971 Extra keyword 'SRCRA' in b: 3.600004699000835 Keyword NAXIS2 has different values: a> 236 b> 237 Keyword SLTSIZE1 has different values: a> 10 b> 11 Keyword SLTSIZE2 has different values: a> 236 b> 237 Keyword SLTSTRT2 has different values: a> 521 b> 522 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 51 (DQ, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 52 (ERR, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 53 (WAVELENGTH, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 54 (VAR_POISSON, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 55 (VAR_RNOISE, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 56 (VAR_FLAT, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 57 (SCI, 9): Headers contain differences: Headers have different number of cards: a: 23 b: 25 Extra keyword 'SRCDEC' in b: -30.3860237133523 Extra keyword 'SRCRA' in b: 3.569829752935783 Keyword SLTSTRT1 has different values: a> 25 b> 26 Keyword SLTSTRT2 has different values: a> 1791 ? ^ b> 1792 ? ^ Data contains differences: Data differs at [1, 1]: a> 0.018300496 b> 0.04914401 Data differs at [2, 1]: a> 0.07292115 b> 0.03709803 Data differs at [3, 1]: a> 0.006714215 b> 0.045797363 Data differs at [4, 1]: a> 0.057412837 b> 0.030214189 Data differs at [5, 1]: a> 0.05260742 b> 0.002094747 Data differs at [6, 1]: a> 0.013841207 b> 0.07073075 Data differs at [7, 1]: a> 0.06833076 b> 0.07115308 Data differs at [8, 1]: a> 0.04218341 b> 0.047660735 Data differs at [9, 1]: a> 0.027864996 b> 0.042478852 Data differs at [10, 1]: a> 0.059238214 b> 0.044986747 ... 55174 different pixels found (100.00% different). Extension HDU 58 (DQ, 9): Data contains differences: Data differs at [15, 1]: a> 0 b> 4 Data differs at [16, 1]: a> 0 b> 4 Data differs at [20, 1]: a> 0 b> 4 Data differs at [21, 1]: a> 0 b> 4 Data differs at [28, 1]: a> 0 b> 4 Data differs at [32, 1]: a> 4 b> 0 Data differs at [67, 1]: a> 0 b> 4 Data differs at [68, 1]: a> 0 b> 4 Data differs at [70, 1]: a> 4 b> 0 Data differs at [71, 1]: a> 4 b> 0 ... 8836 different pixels found (16.01% different). Extension HDU 59 (ERR, 9): Data contains differences: Data differs at [1, 1]: a> 0.01982531 b> 0.019883042 Data differs at [2, 1]: a> 0.020379202 b> 0.020768518 Data differs at [3, 1]: a> 0.01980809 b> 0.0201421 Data differs at [4, 1]: a> 0.020428026 b> 0.019892808 Data differs at [5, 1]: a> 0.020475939 b> 0.019547174 Data differs at [6, 1]: a> 0.019923387 b> 0.02070914 Data differs at [7, 1]: a> 0.020515747 b> 0.020945193 Data differs at [8, 1]: a> 0.01992046 b> 0.02074254 Data differs at [9, 1]: a> 0.0195891 b> 0.020285513 Data differs at [10, 1]: a> 0.020573577 b> 0.019876871 ... 55167 different pixels found (99.98% different). Extension HDU 60 (WAVELENGTH, 9): Data contains differences: Data differs at [1, 1]: a> 1.7922435 b> 1.7875497 Data differs at [2, 1]: a> 1.7922435 b> 1.7875497 Data differs at [3, 1]: a> 1.7922435 b> 1.7875497 Data differs at [4, 1]: a> 1.7922435 b> 1.7875497 Data differs at [5, 1]: a> 1.7922435 b> 1.7875497 Data differs at [6, 1]: a> 1.7922435 b> 1.7875497 Data differs at [7, 1]: a> 1.7922435 b> 1.7875497 Data differs at [8, 1]: a> 1.7922435 b> 1.7875497 Data differs at [9, 1]: a> 1.7922435 b> 1.7875497 Data differs at [10, 1]: a> 1.7922435 b> 1.7875497 ... 55176 different pixels found (100.00% different). Extension HDU 61 (VAR_POISSON, 9): Data contains differences: Data differs at [1, 1]: a> 0.00038881451 b> 0.00039086334 Data differs at [2, 1]: a> 0.0004118398 b> 0.00042644018 Data differs at [3, 1]: a> 0.00038849132 b> 0.00040312088 Data differs at [4, 1]: a> 0.00041337454 b> 0.00039108226 Data differs at [5, 1]: a> 0.00041502528 b> 0.0003768711 Data differs at [6, 1]: a> 0.00039139003 b> 0.0004251499 Data differs at [7, 1]: a> 0.00041772542 b> 0.00043529167 Data differs at [8, 1]: a> 0.00039268463 b> 0.00042584812 Data differs at [9, 1]: a> 0.00037906787 b> 0.00040800878 Data differs at [10, 1]: a> 0.00041859446 b> 0.0003918399 ... 55032 different pixels found (99.74% different). Extension HDU 62 (VAR_RNOISE, 9): Data contains differences: Data differs at [1, 1]: a> 4.224553e-06 b> 4.444852e-06 Data differs at [2, 1]: a> 3.4088628e-06 b> 4.874177e-06 Data differs at [3, 1]: a> 3.868535e-06 b> 2.5592135e-06 Data differs at [4, 1]: a> 3.8915937e-06 b> 4.6309597e-06 Data differs at [5, 1]: a> 4.2061934e-06 b> 5.220881e-06 Data differs at [6, 1]: a> 5.549274e-06 b> 3.6613828e-06 Data differs at [7, 1]: a> 3.116495e-06 b> 3.3503884e-06 Data differs at [8, 1]: a> 4.1193985e-06 b> 4.377403e-06 Data differs at [9, 1]: a> 4.656189e-06 b> 3.4719258e-06 Data differs at [10, 1]: a> 4.6361974e-06 b> 3.2270991e-06 ... 52507 different pixels found (95.16% different). Extension HDU 63 (VAR_FLAT, 9): Data contains differences: Data differs at [113, 1]: a> 1.4214218e-07 b> 1.9844174e-08 Data differs at [119, 1]: a> 2.5894991e-08 b> 1.5745938e-07 Data differs at [122, 1]: a> 2.652957e-07 b> 1.3733384e-07 Data differs at [123, 1]: a> 3.9400356e-07 b> 1.0309822e-07 Data differs at [125, 1]: a> 4.227829e-07 ? ^ - b> 3.2127582e-07 ? ^ + + Data differs at [127, 1]: a> 5.5986595e-07 b> 6.782127e-07 Data differs at [128, 1]: a> 7.1790396e-07 b> 1.0329828e-06 Data differs at [130, 1]: a> 1.4445675e-06 b> 9.4824804e-07 Data differs at [131, 1]: a> 1.9395357e-06 b> 0.0 Data differs at [132, 1]: a> 2.1240514e-06 b> 1.7619503e-06 ... 10858 different pixels found (19.68% different). Extension HDU 64 (SCI, 10): Headers contain differences: Headers have different number of cards: a: 23 b: 25 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 189 b> 191 Keyword SLTSIZE1 has different values: a> 139 b> 140 Keyword SLTSIZE2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 65 (DQ, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 66 (ERR, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 67 (WAVELENGTH, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 68 (VAR_POISSON, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 69 (VAR_RNOISE, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 70 (VAR_FLAT, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f490555a280>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[flat_field] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_flat_field.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_flat_field.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-07 Extension HDU 1 (SCI, 1): Data contains differences: Data differs at [5, 5]: a> 0.82082546 b> 0.82067204 Data differs at [6, 5]: a> 0.089759365 b> 0.08975724 Data differs at [7, 5]: a> 1.203846 b> 1.2038013 Data differs at [8, 5]: a> -0.17252588 b> -0.17267835 Data differs at [9, 5]: a> -0.060819507 b> -0.06097293 Data differs at [10, 5]: a> -0.06569576 b> -0.065849185 Data differs at [11, 5]: a> -0.083259344 b> -0.083412886 Data differs at [12, 5]: a> -0.038711846 b> -0.03883761 Data differs at [13, 5]: a> -0.15667588 b> -0.15680462 Data differs at [14, 5]: a> 0.027448654 b> 0.027335584 ... 4155773 different pixels found (99.08% different). Extension HDU 2 (ERR, 1): Data contains differences: Data differs at [2033, 9]: a> 0.036478918 ? ^^ b> 0.036478393 ? + ^ Data differs at [42, 11]: a> 0.006089169 b> 0.0060893754 Data differs at [651, 11]: a> 0.0034585034 ? ^^^ b> 0.0034587567 ? + ^^ Data differs at [1230, 11]: a> 0.0034741005 b> 0.0034743794 Data differs at [629, 20]: a> 0.009926487 ? -- b> 0.0099267755 ? +++ Data differs at [552, 23]: a> 0.019468695 ? -- b> 0.019469125 ? ++ Data differs at [707, 35]: a> 0.008336648 ? ^^ b> 0.008336963 ? + ^ Data differs at [849, 37]: a> 0.02016625 ? ^^ b> 0.020166898 ? ^^^ Data differs at [1483, 42]: a> 0.022238541 ? ^ -- b> 0.02223905 ? ^^ Data differs at [271, 45]: a> 0.0053882445 ? - ^^ b> 0.005388409 ? ^^ ... 160 different pixels found (0.00% different). Extension HDU 6 (VAR_FLAT, 1): Data contains differences: Data differs at [1220, 32]: a> 0.006500237 b> 0.006500064 Data differs at [1479, 56]: a> 0.027262028 ? ^ ^ b> 0.027263029 ? ^ ^ Data differs at [1987, 80]: a> 0.0053551253 b> 0.0053549614 Data differs at [689, 94]: a> 0.0049420604 b> 0.004942327 Data differs at [680, 168]: a> 0.0013128986 ? - ^^ b> 0.0013130297 ? ++ ^ Data differs at [1517, 173]: a> 0.014913986 ? ^^ b> 0.014913297 ? + ^ Data differs at [623, 328]: a> 0.0016168883 ? --- b> 0.0016167508 ? +++ Data differs at [1799, 351]: a> 0.0008528466 ? ^^ b> 0.0008527066 ? ^^ Data differs at [1089, 368]: a> 0.03408712 b> 0.034086086 Data differs at [272, 417]: a> 0.07086145 ? ^^ b> 0.07086056 ? ^ + ... 46 different pixels found (0.00% different). assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484d0895b0>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[photom] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_photom.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_photom.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-07 Extension HDU 1 (SCI, 1): Headers contain differences: Headers have different number of cards: a: 54 b: 56 Extra keyword 'SRCDEC' in b: -30.40553434784723 Extra keyword 'SRCRA' in b: 3.592040812067641 Keyword SLTSTRT1 has different values: a> 1389 ? - b> 1390 ? + Keyword SLTSTRT2 has different values: a> 1113 ? ^ b> 1114 ? ^ Data contains differences: Data differs at [1, 125]: a> 0.0 b> 1363.4772 Data differs at [2, 125]: a> 0.0 b> 1314.6934 Data differs at [3, 125]: a> 0.0 b> 1513.2789 Data differs at [4, 125]: a> 0.0 b> 1438.8994 Data differs at [5, 125]: a> 0.0 b> 1932.6174 Data differs at [6, 125]: a> 0.0 b> 1949.8593 Data differs at [7, 125]: a> 0.0 b> 2132.382 Data differs at [8, 125]: a> 0.0 b> 1579.2274 Data differs at [9, 125]: a> 0.0 b> 1932.2921 Data differs at [10, 125]: a> 0.0 b> 1362.5513 ... 15249 different pixels found (19.22% different). Extension HDU 2 (DQ, 1): Data contains differences: Data differs at [1, 1]: a> 1 b> 5 Data differs at [2, 1]: a> 1 b> 5 Data differs at [5, 1]: a> 1 b> 5 Data differs at [16, 1]: a> 1 b> 5 Data differs at [17, 1]: a> 1 b> 5 Data differs at [28, 1]: a> 1 b> 5 Data differs at [32, 1]: a> 5 b> 1 Data differs at [44, 1]: a> 5 b> 1 Data differs at [46, 1]: a> 1 b> 16777221 Data differs at [48, 1]: a> 1 b> 5 ... 13566 different pixels found (17.10% different). Extension HDU 3 (ERR, 1): Data contains differences: Data differs at [1, 125]: a> 0.0 b> 191.5967 Data differs at [2, 125]: a> 0.0 b> 186.99792 Data differs at [3, 125]: a> 0.0 b> 190.20242 Data differs at [4, 125]: a> 0.0 b> 188.07532 Data differs at [5, 125]: a> 0.0 b> 192.07884 Data differs at [6, 125]: a> 0.0 b> 199.28291 Data differs at [7, 125]: a> 0.0 b> 197.129 Data differs at [8, 125]: a> 0.0 b> 191.76932 Data differs at [9, 125]: a> 0.0 b> 192.68011 Data differs at [10, 125]: a> 0.0 b> 192.26921 ... 15246 different pixels found (19.22% different). Extension HDU 4 (WAVELENGTH, 1): Data contains differences: Data differs at [1, 1]: a> 1.9013734 b> 1.8966796 Data differs at [2, 1]: a> 1.9013734 b> 1.8966796 Data differs at [3, 1]: a> 1.9013734 b> 1.8966796 Data differs at [4, 1]: a> 1.9013734 b> 1.8966796 Data differs at [5, 1]: a> 1.9013734 b> 1.8966796 Data differs at [6, 1]: a> 1.9013734 b> 1.8966796 Data differs at [7, 1]: a> 1.9013734 b> 1.8966796 Data differs at [8, 1]: a> 1.9013734 b> 1.8966796 Data differs at [9, 1]: a> 1.9013734 b> 1.8966796 Data differs at [10, 1]: a> 1.9013734 b> 1.8966796 ... 79339 different pixels found (100.00% different). Extension HDU 5 (VAR_POISSON, 1): Data contains differences: Data differs at [1, 125]: a> 0.0 b> 36424.82 Data differs at [2, 125]: a> 0.0 b> 34599.67 Data differs at [3, 125]: a> 0.0 b> 35775.6 Data differs at [4, 125]: a> 0.0 b> 35013.43 Data differs at [5, 125]: a> 0.0 b> 36640.895 Data differs at [6, 125]: a> 0.0 b> 39414.37 Data differs at [7, 125]: a> 0.0 b> 38401.395 Data differs at [8, 125]: a> 0.0 b> 36373.76 Data differs at [9, 125]: a> 0.0 b> 36752.85 Data differs at [10, 125]: a> 0.0 b> 36637.6 ... 15248 different pixels found (19.22% different). Extension HDU 6 (VAR_RNOISE, 1): Data contains differences: Data differs at [1, 125]: a> 0.0 b> 261.33878 Data differs at [2, 125]: a> 0.0 b> 348.2399 Data differs at [3, 125]: a> 0.0 b> 372.7315 Data differs at [4, 125]: a> 0.0 b> 334.8433 Data differs at [5, 125]: a> 0.0 b> 208.7587 Data differs at [6, 125]: a> 0.0 b> 254.74019 Data differs at [7, 125]: a> 0.0 b> 404.5371 Data differs at [8, 125]: a> 0.0 b> 372.12772 Data differs at [9, 125]: a> 0.0 b> 327.5682 Data differs at [10, 125]: a> 0.0 b> 307.2687 ... 15247 different pixels found (19.22% different). Extension HDU 7 (VAR_FLAT, 1): Data contains differences: Data differs at [1, 125]: a> 0.0 b> 23.128403 Data differs at [2, 125]: a> 0.0 b> 20.311348 Data differs at [3, 125]: a> 0.0 b> 28.629303 Data differs at [4, 125]: a> 0.0 b> 24.053085 Data differs at [5, 125]: a> 0.0 b> 44.628468 Data differs at [6, 125]: a> 0.0 b> 44.564407 Data differs at [7, 125]: a> 0.0 b> 53.908096 Data differs at [8, 125]: a> 0.0 b> 29.58187 Data differs at [9, 125]: a> 0.0 b> 45.20958 Data differs at [10, 125]: a> 0.0 b> 22.578938 ... 15245 different pixels found (19.22% different). Extension HDU 8 (SCI, 2): Headers contain differences: Headers have different number of cards: a: 30 b: 32 Extra keyword 'SRCDEC' in b: -30.40018067148927 Extra keyword 'SRCRA' in b: 3.586356414491374 Keyword SLTSTRT1 has different values: a> 1032 ? ^ b> 1033 ? ^ Keyword SLTSTRT2 has different values: a> 1314 ? ^ b> 1315 ? ^ Data contains differences: Data differs at [1, 85]: a> 0.0 b> 3985.8796 Data differs at [2, 85]: a> 0.0 b> 4118.5845 Data differs at [3, 85]: a> 0.0 b> -58.99588 Data differs at [4, 85]: a> 0.0 b> 4555.2866 Data differs at [5, 85]: a> 0.0 b> 5155.0547 Data differs at [6, 85]: a> 0.0 b> 4215.951 Data differs at [7, 85]: a> 0.0 b> 4324.001 Data differs at [8, 85]: a> 0.0 b> 4124.1924 Data differs at [9, 85]: a> 0.0 b> 3861.4543 Data differs at [10, 85]: a> 0.0 b> 4730.775 ... 15957 different pixels found (28.11% different). Extension HDU 9 (DQ, 2): Data contains differences: Data differs at [2, 1]: a> 5 b> 1 Data differs at [3, 1]: a> 5 b> 1 Data differs at [4, 1]: a> 5 b> 1 Data differs at [12, 1]: a> 1 b> 5 Data differs at [13, 1]: a> 1 b> 5 Data differs at [15, 1]: a> 5 b> 8388613 Data differs at [18, 1]: a> 16779265 b> 1 Data differs at [20, 1]: a> 1 b> 35914753 Data differs at [46, 1]: a> 5 b> 1 Data differs at [47, 1]: a> 5 b> 1 ... 9663 different pixels found (17.02% different). Extension HDU 10 (ERR, 2): Data contains differences: Data differs at [1, 85]: a> 0.0 b> 300.3294 Data differs at [2, 85]: a> 0.0 b> 280.55493 Data differs at [3, 85]: a> 0.0 b> 85.338104 Data differs at [4, 85]: a> 0.0 b> 275.2996 Data differs at [5, 85]: a> 0.0 b> 305.31372 Data differs at [6, 85]: a> 0.0 b> 287.1998 Data differs at [7, 85]: a> 0.0 b> 280.49844 Data differs at [8, 85]: a> 0.0 b> 278.29352 Data differs at [9, 85]: a> 0.0 b> 285.17935 Data differs at [10, 85]: a> 0.0 b> 288.2807 ... 15958 different pixels found (28.11% different). Extension HDU 11 (WAVELENGTH, 2): Data contains differences: Data differs at [1, 1]: a> 1.7154493 b> 1.7107556 Data differs at [2, 1]: a> 1.7154493 b> 1.7107556 Data differs at [3, 1]: a> 1.7154493 b> 1.7107556 Data differs at [4, 1]: a> 1.7154493 b> 1.7107556 Data differs at [5, 1]: a> 1.7154493 b> 1.7107556 Data differs at [6, 1]: a> 1.7154493 b> 1.7107556 Data differs at [7, 1]: a> 1.7154493 b> 1.7107556 Data differs at [8, 1]: a> 1.7154493 b> 1.7107556 Data differs at [9, 1]: a> 1.7154493 b> 1.7107556 Data differs at [10, 1]: a> 1.7154493 b> 1.7107556 ... 56772 different pixels found (100.00% different). Extension HDU 12 (VAR_POISSON, 2): Data contains differences: Data differs at [1, 85]: a> 0.0 b> 88679.945 Data differs at [2, 85]: a> 0.0 b> 78039.22 Data differs at [3, 85]: a> 0.0 b> 2036.2072 Data differs at [4, 85]: a> 0.0 b> 75026.336 Data differs at [5, 85]: a> 0.0 b> 92242.55 Data differs at [6, 85]: a> 0.0 b> 81677.06 Data differs at [7, 85]: a> 0.0 b> 77789.305 Data differs at [8, 85]: a> 0.0 b> 76522.234 Data differs at [9, 85]: a> 0.0 b> 80232.84 Data differs at [10, 85]: a> 0.0 b> 82342.11 ... 15950 different pixels found (28.09% different). Extension HDU 13 (VAR_RNOISE, 2): Data contains differences: Data differs at [1, 85]: a> 0.0 b> 1324.0547 Data differs at [2, 85]: a> 0.0 b> 479.76517 Data differs at [3, 85]: a> 0.0 b> 5246.3857 Data differs at [4, 85]: a> 0.0 b> 524.931 Data differs at [5, 85]: a> 0.0 b> 642.7656 Data differs at [6, 85]: a> 0.0 b> 598.9909 Data differs at [7, 85]: a> 0.0 b> 667.98175 Data differs at [8, 85]: a> 0.0 b> 725.91876 Data differs at [9, 85]: a> 0.0 b> 904.42816 Data differs at [10, 85]: a> 0.0 b> 503.98715 ... 15959 different pixels found (28.11% different). Extension HDU 14 (VAR_FLAT, 2): Data contains differences: Data differs at [1, 85]: a> 0.0 b> 193.7494 Data differs at [2, 85]: a> 0.0 b> 192.08748 Data differs at [4, 85]: a> 0.0 b> 238.59854 Data differs at [5, 85]: a> 0.0 b> 331.16757 Data differs at [6, 85]: a> 0.0 b> 207.66754 Data differs at [7, 85]: a> 0.0 b> 222.09827 Data differs at [8, 85]: a> 0.0 b> 199.12457 Data differs at [9, 85]: a> 0.0 b> 189.98973 Data differs at [10, 85]: a> 0.0 b> 259.66467 Data differs at [11, 85]: a> 0.0 b> 166.92542 ... 15957 different pixels found (28.11% different). Extension HDU 15 (SCI, 3): Headers contain differences: Headers have different number of cards: a: 30 b: 32 Extra keyword 'SRCDEC' in b: -30.39411309485647 Extra keyword 'SRCRA' in b: 3.585624631060788 Keyword NAXIS2 has different values: a> 321 b> 322 Keyword SLTSIZE1 has different values: a> 181 b> 183 Keyword SLTSIZE2 has different values: a> 321 b> 322 Keyword SLTSTRT2 has different values: a> 1177 ? ^ b> 1178 ? ^ Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 16 (DQ, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 17 (ERR, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 18 (WAVELENGTH, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 19 (VAR_POISSON, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 20 (VAR_RNOISE, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 21 (VAR_FLAT, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 22 (SCI, 4): Headers contain differences: Headers have different number of cards: a: 30 b: 32 Extra keyword 'SRCDEC' in b: -30.39163095906152 Extra keyword 'SRCRA' in b: 3.59464814053007 Keyword NAXIS2 has different values: a> 228 b> 229 Keyword SLTSIZE1 has different values: a> 197 b> 199 Keyword SLTSIZE2 has different values: a> 228 b> 229 Keyword SLTSTRT2 has different values: a> 801 b> 802 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 23 (DQ, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 24 (ERR, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 25 (WAVELENGTH, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 26 (VAR_POISSON, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 27 (VAR_RNOISE, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 28 (VAR_FLAT, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 29 (SCI, 5): Headers contain differences: Headers have different number of cards: a: 30 b: 32 Extra keyword 'SRCDEC' in b: -30.39602892937478 Extra keyword 'SRCRA' in b: 3.58789771169632 Keyword NAXIS2 has different values: a> 203 b> 205 Keyword SLTSIZE2 has different values: a> 203 b> 205 Keyword SLTSTRT1 has different values: a> 857 b> 858 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 30 (DQ, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 31 (ERR, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 32 (WAVELENGTH, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 33 (VAR_POISSON, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 34 (VAR_RNOISE, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 35 (VAR_FLAT, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 36 (SCI, 6): Headers contain differences: Headers have different number of cards: a: 30 b: 32 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Keyword SLTSIZE1 has different values: a> 133 b> 134 Keyword SLTSTRT2 has different values: a> 217 b> 218 Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 37 (DQ, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 38 (ERR, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 39 (WAVELENGTH, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 40 (VAR_POISSON, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 41 (VAR_RNOISE, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 42 (VAR_FLAT, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 43 (SCI, 7): Headers contain differences: Headers have different number of cards: a: 30 b: 32 Extra keyword 'SRCDEC' in b: -30.40926138863649 Extra keyword 'SRCRA' in b: 3.579587921874186 Keyword NAXIS2 has different values: a> 209 b> 211 Keyword SLTSIZE1 has different values: a> 117 b> 119 Keyword SLTSIZE2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 44 (DQ, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 45 (ERR, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 46 (WAVELENGTH, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 47 (VAR_POISSON, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 48 (VAR_RNOISE, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 49 (VAR_FLAT, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 50 (SCI, 8): Headers contain differences: Headers have different number of cards: a: 30 b: 32 Extra keyword 'SRCDEC' in b: -30.38980139908971 Extra keyword 'SRCRA' in b: 3.600004699000835 Keyword NAXIS2 has different values: a> 236 b> 237 Keyword SLTSIZE1 has different values: a> 10 b> 11 Keyword SLTSIZE2 has different values: a> 236 b> 237 Keyword SLTSTRT2 has different values: a> 521 b> 522 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 51 (DQ, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 52 (ERR, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 53 (WAVELENGTH, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 54 (VAR_POISSON, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 55 (VAR_RNOISE, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 56 (VAR_FLAT, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 57 (SCI, 9): Headers contain differences: Headers have different number of cards: a: 30 b: 32 Extra keyword 'SRCDEC' in b: -30.3860237133523 Extra keyword 'SRCRA' in b: 3.569829752935783 Keyword SLTSTRT1 has different values: a> 25 b> 26 Keyword SLTSTRT2 has different values: a> 1791 ? ^ b> 1792 ? ^ Data contains differences: Data differs at [1, 102]: a> 0.0 b> 566.4476 Data differs at [2, 102]: a> 0.0 b> 338.4689 Data differs at [3, 102]: a> 0.0 b> 159.03731 Data differs at [4, 102]: a> 0.0 b> 145.91112 Data differs at [5, 102]: a> 0.0 b> 305.26697 Data differs at [6, 102]: a> 0.0 b> 195.4081 Data differs at [7, 102]: a> 0.0 b> 491.52173 Data differs at [8, 102]: a> 0.0 b> 190.26485 Data differs at [9, 102]: a> 0.0 b> 597.8491 Data differs at [10, 102]: a> 0.0 b> 1145.7515 ... 15732 different pixels found (28.51% different). Extension HDU 58 (DQ, 9): Data contains differences: Data differs at [15, 1]: a> 1 b> 5 Data differs at [16, 1]: a> 1 b> 5 Data differs at [20, 1]: a> 1 b> 5 Data differs at [21, 1]: a> 1 b> 5 Data differs at [28, 1]: a> 1 b> 5 Data differs at [32, 1]: a> 5 b> 1 Data differs at [67, 1]: a> 1 b> 5 Data differs at [68, 1]: a> 1 b> 5 Data differs at [70, 1]: a> 5 b> 1 Data differs at [71, 1]: a> 5 b> 1 ... 8873 different pixels found (16.08% different). Extension HDU 59 (ERR, 9): Data contains differences: Data differs at [1, 102]: a> 0.0 b> 152.93675 Data differs at [2, 102]: a> 0.0 b> 148.28142 Data differs at [3, 102]: a> 0.0 b> 146.94443 Data differs at [4, 102]: a> 0.0 b> 134.35672 Data differs at [5, 102]: a> 0.0 b> 141.13506 Data differs at [6, 102]: a> 0.0 b> 136.90057 Data differs at [7, 102]: a> 0.0 b> 144.3461 Data differs at [8, 102]: a> 0.0 b> 134.80638 Data differs at [9, 102]: a> 0.0 b> 141.16875 Data differs at [10, 102]: a> 0.0 b> 148.1953 ... 15729 different pixels found (28.51% different). Extension HDU 60 (WAVELENGTH, 9): Data contains differences: Data differs at [1, 1]: a> 1.7922435 b> 1.7875497 Data differs at [2, 1]: a> 1.7922435 b> 1.7875497 Data differs at [3, 1]: a> 1.7922435 b> 1.7875497 Data differs at [4, 1]: a> 1.7922435 b> 1.7875497 Data differs at [5, 1]: a> 1.7922435 b> 1.7875497 Data differs at [6, 1]: a> 1.7922435 b> 1.7875497 Data differs at [7, 1]: a> 1.7922435 b> 1.7875497 Data differs at [8, 1]: a> 1.7922435 b> 1.7875497 Data differs at [9, 1]: a> 1.7922435 b> 1.7875497 Data differs at [10, 1]: a> 1.7922435 b> 1.7875497 ... 55176 different pixels found (100.00% different). Extension HDU 61 (VAR_POISSON, 9): Data contains differences: Data differs at [1, 102]: a> 0.0 b> 22543.514 Data differs at [2, 102]: a> 0.0 b> 21227.89 Data differs at [3, 102]: a> 0.0 b> 20556.422 Data differs at [4, 102]: a> 0.0 b> 17923.559 Data differs at [5, 102]: a> 0.0 b> 19693.129 Data differs at [6, 102]: a> 0.0 b> 18591.36 Data differs at [7, 102]: a> 0.0 b> 20624.27 Data differs at [8, 102]: a> 0.0 b> 17996.79 Data differs at [9, 102]: a> 0.0 b> 19779.443 Data differs at [10, 102]: a> 0.0 b> 21791.436 ... 15731 different pixels found (28.51% different). Extension HDU 62 (VAR_RNOISE, 9): Data contains differences: Data differs at [1, 102]: a> 0.0 b> 842.26373 Data differs at [2, 102]: a> 0.0 b> 758.1521 Data differs at [3, 102]: a> 0.0 b> 1035.9584 Data differs at [4, 102]: a> 0.0 b> 127.92964 Data differs at [5, 102]: a> 0.0 b> 224.8679 Data differs at [6, 102]: a> 0.0 b> 149.96489 Data differs at [7, 102]: a> 0.0 b> 208.6493 Data differs at [8, 102]: a> 0.0 b> 175.55556 Data differs at [9, 102]: a> 0.0 b> 145.00322 Data differs at [10, 102]: a> 0.0 b> 154.8307 ... 15730 different pixels found (28.51% different). Extension HDU 63 (VAR_FLAT, 9): Data contains differences: Data differs at [1, 102]: a> 0.0 b> 3.8734808 Data differs at [2, 102]: a> 0.0 b> 1.3375401 Data differs at [3, 102]: a> 0.0 b> 0.28612608 Data differs at [4, 102]: a> 0.0 b> 0.23972379 Data differs at [5, 102]: a> 0.0 b> 1.1103776 Data differs at [6, 102]: a> 0.0 b> 0.44549134 Data differs at [7, 102]: a> 0.0 b> 2.8770452 Data differs at [8, 102]: a> 0.0 b> 0.4184726 Data differs at [9, 102]: a> 0.0 b> 4.171244 Data differs at [10, 102]: a> 0.0 b> 15.577756 ... 15666 different pixels found (28.39% different). Extension HDU 64 (SCI, 10): Headers contain differences: Headers have different number of cards: a: 30 b: 32 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 189 b> 191 Keyword SLTSIZE1 has different values: a> 139 b> 140 Keyword SLTSIZE2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 65 (DQ, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 66 (ERR, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 67 (WAVELENGTH, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 68 (VAR_POISSON, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 69 (VAR_RNOISE, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 70 (VAR_FLAT, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484cca2490>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[srctype] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_srctype.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_srctype.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-07 Extension HDU 1 (SCI, 1): Headers contain differences: Headers have different number of cards: a: 48 b: 50 Extra keyword 'SRCDEC' in b: -30.40553434784723 Extra keyword 'SRCRA' in b: 3.592040812067641 Keyword SLTSTRT1 has different values: a> 1389 ? - b> 1390 ? + Keyword SLTSTRT2 has different values: a> 1113 ? ^ b> 1114 ? ^ Data contains differences: Data differs at [1, 1]: a> 0.07601866 b> 0.09491855 Data differs at [2, 1]: a> 0.091159254 b> 0.020518458 Data differs at [3, 1]: a> 0.063286245 b> 0.07317534 Data differs at [4, 1]: a> 0.05025898 b> 0.07113351 Data differs at [5, 1]: a> 0.016595162 b> 0.075566575 Data differs at [6, 1]: a> 0.07393524 b> 0.061039086 Data differs at [7, 1]: a> 0.06604941 b> 0.04007152 Data differs at [8, 1]: a> 0.006939598 b> 0.0797044 Data differs at [9, 1]: a> 0.06425873 b> 0.057408143 Data differs at [10, 1]: a> 0.06636904 b> 0.07423474 ... 79333 different pixels found (99.99% different). Extension HDU 2 (DQ, 1): Data contains differences: Data differs at [1, 1]: a> 0 b> 4 Data differs at [2, 1]: a> 0 b> 4 Data differs at [5, 1]: a> 0 b> 4 Data differs at [16, 1]: a> 0 b> 4 Data differs at [17, 1]: a> 0 b> 4 Data differs at [28, 1]: a> 0 b> 4 Data differs at [32, 1]: a> 4 b> 0 Data differs at [44, 1]: a> 4 b> 0 Data differs at [46, 1]: a> 0 b> 16777221 Data differs at [48, 1]: a> 0 b> 4 ... 13727 different pixels found (17.30% different). Extension HDU 3 (ERR, 1): Data contains differences: Data differs at [1, 1]: a> 0.021101505 b> 0.022167083 Data differs at [2, 1]: a> 0.021743273 b> 0.021564962 Data differs at [3, 1]: a> 0.022068132 b> 0.022213832 Data differs at [4, 1]: a> 0.020673273 b> 0.021578563 Data differs at [5, 1]: a> 0.019631913 b> 0.022153186 Data differs at [6, 1]: a> 0.021232158 b> 0.020933269 Data differs at [7, 1]: a> 0.020554062 b> 0.020602789 Data differs at [8, 1]: a> 0.019950496 b> 0.02096566 Data differs at [9, 1]: a> 0.021507863 b> 0.021246059 Data differs at [10, 1]: a> 0.021294583 b> 0.021775313 ... 79315 different pixels found (99.97% different). Extension HDU 4 (WAVELENGTH, 1): Data contains differences: Data differs at [1, 1]: a> 1.9013734 b> 1.8966796 Data differs at [2, 1]: a> 1.9013734 b> 1.8966796 Data differs at [3, 1]: a> 1.9013734 b> 1.8966796 Data differs at [4, 1]: a> 1.9013734 b> 1.8966796 Data differs at [5, 1]: a> 1.9013734 b> 1.8966796 Data differs at [6, 1]: a> 1.9013734 b> 1.8966796 Data differs at [7, 1]: a> 1.9013734 b> 1.8966796 Data differs at [8, 1]: a> 1.9013734 b> 1.8966796 Data differs at [9, 1]: a> 1.9013734 b> 1.8966796 Data differs at [10, 1]: a> 1.9013734 b> 1.8966796 ... 79339 different pixels found (100.00% different). Extension HDU 5 (VAR_POISSON, 1): Data contains differences: Data differs at [1, 1]: a> 0.00044092129 b> 0.0004695498 Data differs at [2, 1]: a> 0.0004693386 b> 0.00045110442 Data differs at [3, 1]: a> 0.00046863322 b> 0.00047672258 Data differs at [4, 1]: a> 0.0004243046 b> 0.0004620551 Data differs at [5, 1]: a> 0.00038146426 b> 0.00048392726 Data differs at [6, 1]: a> 0.0004464778 b> 0.00043413675 Data differs at [7, 1]: a> 0.0004173837 b> 0.00041826177 Data differs at [8, 1]: a> 0.00039347596 b> 0.00043684588 Data differs at [9, 1]: a> 0.00045359458 b> 0.00044724232 Data differs at [10, 1]: a> 0.00044899594 b> 0.00046903442 ... 79171 different pixels found (99.79% different). Extension HDU 6 (VAR_RNOISE, 1): Data contains differences: Data differs at [1, 1]: a> 4.2842657e-06 b> 2.1721587e-05 Data differs at [2, 1]: a> 3.3317215e-06 b> 1.3938283e-05 Data differs at [3, 1]: a> 1.8322411e-05 b> 1.6667349e-05 Data differs at [4, 1]: a> 3.0500287e-06 b> 3.5189762e-06 Data differs at [5, 1]: a> 3.9447364e-06 b> 6.7672145e-06 Data differs at [6, 1]: a> 4.2621227e-06 b> 4.021001e-06 Data differs at [7, 1]: a> 5.034949e-06 b> 6.1944747e-06 Data differs at [8, 1]: a> 4.545765e-06 b> 2.6388068e-06 Data differs at [9, 1]: a> 8.945237e-06 b> 4.1124395e-06 Data differs at [10, 1]: a> 4.4113017e-06 b> 5.064231e-06 ... 75727 different pixels found (95.45% different). Extension HDU 7 (VAR_FLAT, 1): Data contains differences: Data differs at [17, 1]: a> 4.913979e-08 b> 1.9260558e-07 Data differs at [19, 1]: a> 1.4055821e-07 b> 1.3462205e-08 Data differs at [20, 1]: a> 7.747428e-09 b> 1.1106848e-07 Data differs at [21, 1]: a> 1.4606553e-07 b> 4.5921e-08 Data differs at [45, 1]: a> 1.017291e-08 b> 1.1921217e-07 Data differs at [47, 1]: a> 9.3021155e-09 b> 1.0938525e-07 Data differs at [48, 1]: a> 3.762465e-08 b> 1.4567745e-07 Data differs at [51, 1]: a> 1.82091e-07 b> 5.269996e-09 Data differs at [55, 1]: a> 1.7381811e-07 b> 1.7002574e-08 Data differs at [61, 1]: a> 1.0950979e-07 b> 2.4832877e-07 ... 50000 different pixels found (63.02% different). Extension HDU 8 (SCI, 2): Headers contain differences: Headers have different number of cards: a: 24 b: 26 Extra keyword 'SRCDEC' in b: -30.40018067148927 Extra keyword 'SRCRA' in b: 3.586356414491374 Keyword SLTSTRT1 has different values: a> 1032 ? ^ b> 1033 ? ^ Keyword SLTSTRT2 has different values: a> 1314 ? ^ b> 1315 ? ^ Data contains differences: Data differs at [1, 1]: a> 0.19990797 b> 0.18290745 Data differs at [2, 1]: a> 0.23067056 b> 0.2477534 Data differs at [3, 1]: a> 0.23131803 b> 0.2964172 Data differs at [4, 1]: a> 0.20412807 b> 0.2580659 Data differs at [5, 1]: a> 0.2401229 b> 0.2511261 Data differs at [6, 1]: a> 0.23832908 b> 0.19198704 Data differs at [7, 1]: a> 0.22189732 b> 0.17562482 Data differs at [8, 1]: a> 0.14300282 b> 0.17584698 Data differs at [9, 1]: a> 0.15427624 b> 0.18087307 Data differs at [10, 1]: a> 0.20676768 b> 0.12289692 ... 56770 different pixels found (100.00% different). Extension HDU 9 (DQ, 2): Data contains differences: Data differs at [2, 1]: a> 4 b> 0 Data differs at [3, 1]: a> 4 b> 0 Data differs at [4, 1]: a> 4 b> 0 Data differs at [12, 1]: a> 0 b> 4 Data differs at [13, 1]: a> 0 b> 4 Data differs at [15, 1]: a> 4 b> 8388613 Data differs at [18, 1]: a> 16779265 b> 0 Data differs at [20, 1]: a> 0 b> 35914753 Data differs at [46, 1]: a> 4 b> 0 Data differs at [47, 1]: a> 4 b> 0 ... 9676 different pixels found (17.04% different). Extension HDU 10 (ERR, 2): Data contains differences: Data differs at [1, 1]: a> 0.0224017 b> 0.023020292 Data differs at [2, 1]: a> 0.024187082 b> 0.023029739 Data differs at [3, 1]: a> 0.02411214 b> 0.023737837 Data differs at [4, 1]: a> 0.023702415 b> 0.023137512 Data differs at [5, 1]: a> 0.023448238 b> 0.023216644 Data differs at [6, 1]: a> 0.023274248 b> 0.02180982 Data differs at [7, 1]: a> 0.023105526 b> 0.022139112 Data differs at [8, 1]: a> 0.021588627 b> 0.021680543 Data differs at [9, 1]: a> 0.020922955 b> 0.02214974 Data differs at [10, 1]: a> 0.0227876 b> 0.021650355 ... 56758 different pixels found (99.98% different). Extension HDU 11 (WAVELENGTH, 2): Data contains differences: Data differs at [1, 1]: a> 1.7154493 b> 1.7107556 Data differs at [2, 1]: a> 1.7154493 b> 1.7107556 Data differs at [3, 1]: a> 1.7154493 b> 1.7107556 Data differs at [4, 1]: a> 1.7154493 b> 1.7107556 Data differs at [5, 1]: a> 1.7154493 b> 1.7107556 Data differs at [6, 1]: a> 1.7154493 b> 1.7107556 Data differs at [7, 1]: a> 1.7154493 b> 1.7107556 Data differs at [8, 1]: a> 1.7154493 b> 1.7107556 Data differs at [9, 1]: a> 1.7154493 b> 1.7107556 Data differs at [10, 1]: a> 1.7154493 b> 1.7107556 ... 56772 different pixels found (100.00% different). Extension HDU 12 (VAR_POISSON, 2): Data contains differences: Data differs at [1, 1]: a> 0.0004967198 b> 0.0005257822 Data differs at [2, 1]: a> 0.0005659332 b> 0.0005248566 Data differs at [3, 1]: a> 0.0005600677 b> 0.0005520634 Data differs at [4, 1]: a> 0.00052954094 b> 0.0005299283 Data differs at [5, 1]: a> 0.00054649735 b> 0.0005338184 Data differs at [6, 1]: a> 0.00053486385 b> 0.00047162746 Data differs at [7, 1]: a> 0.0005210768 b> 0.00048540108 Data differs at [8, 1]: a> 0.00046242232 b> 0.00046590794 Data differs at [9, 1]: a> 0.00043405924 b> 0.00048541123 Data differs at [10, 1]: a> 0.0005143815 b> 0.00046457764 ... 56658 different pixels found (99.80% different). Extension HDU 13 (VAR_RNOISE, 2): Data contains differences: Data differs at [1, 1]: a> 4.665698e-06 b> 3.7364505e-06 Data differs at [2, 1]: a> 1.8443272e-05 b> 4.801762e-06 Data differs at [3, 1]: a> 2.0702795e-05 b> 1.0406416e-05 Data differs at [4, 1]: a> 3.1765037e-05 b> 4.660997e-06 Data differs at [5, 1]: a> 2.6672885e-06 b> 4.456551e-06 Data differs at [6, 1]: a> 6.1673345e-06 b> 3.636675e-06 Data differs at [7, 1]: a> 1.2237247e-05 b> 4.381598e-06 Data differs at [8, 1]: a> 3.4235275e-06 b> 3.815099e-06 Data differs at [9, 1]: a> 3.4832394e-06 b> 4.8139077e-06 Data differs at [10, 1]: a> 4.3654472e-06 b> 3.9951915e-06 ... 54296 different pixels found (95.64% different). Extension HDU 14 (VAR_FLAT, 2): Data contains differences: Data differs at [3, 1]: a> 6.248351e-07 b> 1.0150636e-06 Data differs at [4, 1]: a> 4.9849564e-07 b> 7.5511593e-07 Data differs at [6, 1]: a> 6.594963e-07 b> 4.0410734e-07 Data differs at [7, 1]: a> 5.5132745e-07 b> 3.5759572e-07 Data differs at [8, 1]: a> 2.2292639e-07 ? ^ ^ ^ b> 3.2294636e-07 ? ^ ^ ^ Data differs at [9, 1]: a> 2.2759919e-07 b> 3.858297e-07 Data differs at [10, 1]: a> 5.277661e-07 b> 1.6503091e-07 Data differs at [11, 1]: a> 4.2515765e-07 b> 6.758743e-07 Data differs at [12, 1]: a> 4.9715146e-07 b> 7.964099e-07 Data differs at [13, 1]: a> 6.500649e-07 b> 4.54274e-07 ... 42339 different pixels found (74.58% different). Extension HDU 15 (SCI, 3): Headers contain differences: Headers have different number of cards: a: 24 b: 26 Extra keyword 'SRCDEC' in b: -30.39411309485647 Extra keyword 'SRCRA' in b: 3.585624631060788 Keyword NAXIS2 has different values: a> 321 b> 322 Keyword SLTSIZE1 has different values: a> 181 b> 183 Keyword SLTSIZE2 has different values: a> 321 b> 322 Keyword SLTSTRT2 has different values: a> 1177 ? ^ b> 1178 ? ^ Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 16 (DQ, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 17 (ERR, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 18 (WAVELENGTH, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 19 (VAR_POISSON, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 20 (VAR_RNOISE, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 21 (VAR_FLAT, 3): Headers contain differences: Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Data dimensions differ: a: 181 x 321 b: 183 x 322 No further data comparison performed. Extension HDU 22 (SCI, 4): Headers contain differences: Headers have different number of cards: a: 24 b: 26 Extra keyword 'SRCDEC' in b: -30.39163095906152 Extra keyword 'SRCRA' in b: 3.59464814053007 Keyword NAXIS2 has different values: a> 228 b> 229 Keyword SLTSIZE1 has different values: a> 197 b> 199 Keyword SLTSIZE2 has different values: a> 228 b> 229 Keyword SLTSTRT2 has different values: a> 801 b> 802 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 23 (DQ, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 24 (ERR, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 25 (WAVELENGTH, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 26 (VAR_POISSON, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 27 (VAR_RNOISE, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 28 (VAR_FLAT, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Data dimensions differ: a: 197 x 228 b: 199 x 229 No further data comparison performed. Extension HDU 29 (SCI, 5): Headers contain differences: Headers have different number of cards: a: 24 b: 26 Extra keyword 'SRCDEC' in b: -30.39602892937478 Extra keyword 'SRCRA' in b: 3.58789771169632 Keyword NAXIS2 has different values: a> 203 b> 205 Keyword SLTSIZE2 has different values: a> 203 b> 205 Keyword SLTSTRT1 has different values: a> 857 b> 858 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 30 (DQ, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 31 (ERR, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 32 (WAVELENGTH, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 33 (VAR_POISSON, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 34 (VAR_RNOISE, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 35 (VAR_FLAT, 5): Headers contain differences: Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Data dimensions differ: a: 154 x 203 b: 154 x 205 No further data comparison performed. Extension HDU 36 (SCI, 6): Headers contain differences: Headers have different number of cards: a: 24 b: 26 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Keyword SLTSIZE1 has different values: a> 133 b> 134 Keyword SLTSTRT2 has different values: a> 217 b> 218 Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 37 (DQ, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 38 (ERR, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 39 (WAVELENGTH, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 40 (VAR_POISSON, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 41 (VAR_RNOISE, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 42 (VAR_FLAT, 6): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 43 (SCI, 7): Headers contain differences: Headers have different number of cards: a: 24 b: 26 Extra keyword 'SRCDEC' in b: -30.40926138863649 Extra keyword 'SRCRA' in b: 3.579587921874186 Keyword NAXIS2 has different values: a> 209 b> 211 Keyword SLTSIZE1 has different values: a> 117 b> 119 Keyword SLTSIZE2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 44 (DQ, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 45 (ERR, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 46 (WAVELENGTH, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 47 (VAR_POISSON, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 48 (VAR_RNOISE, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 49 (VAR_FLAT, 7): Headers contain differences: Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Data dimensions differ: a: 117 x 209 b: 119 x 211 No further data comparison performed. Extension HDU 50 (SCI, 8): Headers contain differences: Headers have different number of cards: a: 24 b: 26 Extra keyword 'SRCDEC' in b: -30.38980139908971 Extra keyword 'SRCRA' in b: 3.600004699000835 Keyword NAXIS2 has different values: a> 236 b> 237 Keyword SLTSIZE1 has different values: a> 10 b> 11 Keyword SLTSIZE2 has different values: a> 236 b> 237 Keyword SLTSTRT2 has different values: a> 521 b> 522 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 51 (DQ, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 52 (ERR, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 53 (WAVELENGTH, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 54 (VAR_POISSON, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 55 (VAR_RNOISE, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 56 (VAR_FLAT, 8): Headers contain differences: Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Data dimensions differ: a: 10 x 236 b: 11 x 237 No further data comparison performed. Extension HDU 57 (SCI, 9): Headers contain differences: Headers have different number of cards: a: 24 b: 26 Extra keyword 'SRCDEC' in b: -30.3860237133523 Extra keyword 'SRCRA' in b: 3.569829752935783 Keyword SLTSTRT1 has different values: a> 25 b> 26 Keyword SLTSTRT2 has different values: a> 1791 ? ^ b> 1792 ? ^ Data contains differences: Data differs at [1, 1]: a> 0.018300496 b> 0.04914401 Data differs at [2, 1]: a> 0.07292115 b> 0.03709803 Data differs at [3, 1]: a> 0.006714215 b> 0.045797363 Data differs at [4, 1]: a> 0.057412837 b> 0.030214189 Data differs at [5, 1]: a> 0.05260742 b> 0.002094747 Data differs at [6, 1]: a> 0.013841207 b> 0.07073075 Data differs at [7, 1]: a> 0.06833076 b> 0.07115308 Data differs at [8, 1]: a> 0.04218341 b> 0.047660735 Data differs at [9, 1]: a> 0.027864996 b> 0.042478852 Data differs at [10, 1]: a> 0.059238214 b> 0.044986747 ... 55174 different pixels found (100.00% different). Extension HDU 58 (DQ, 9): Data contains differences: Data differs at [15, 1]: a> 0 b> 4 Data differs at [16, 1]: a> 0 b> 4 Data differs at [20, 1]: a> 0 b> 4 Data differs at [21, 1]: a> 0 b> 4 Data differs at [28, 1]: a> 0 b> 4 Data differs at [32, 1]: a> 4 b> 0 Data differs at [67, 1]: a> 0 b> 4 Data differs at [68, 1]: a> 0 b> 4 Data differs at [70, 1]: a> 4 b> 0 Data differs at [71, 1]: a> 4 b> 0 ... 8836 different pixels found (16.01% different). Extension HDU 59 (ERR, 9): Data contains differences: Data differs at [1, 1]: a> 0.01982531 b> 0.019883042 Data differs at [2, 1]: a> 0.020379202 b> 0.020768518 Data differs at [3, 1]: a> 0.01980809 b> 0.0201421 Data differs at [4, 1]: a> 0.020428026 b> 0.019892808 Data differs at [5, 1]: a> 0.020475939 b> 0.019547174 Data differs at [6, 1]: a> 0.019923387 b> 0.02070914 Data differs at [7, 1]: a> 0.020515747 b> 0.020945193 Data differs at [8, 1]: a> 0.01992046 b> 0.02074254 Data differs at [9, 1]: a> 0.0195891 b> 0.020285513 Data differs at [10, 1]: a> 0.020573577 b> 0.019876871 ... 55167 different pixels found (99.98% different). Extension HDU 60 (WAVELENGTH, 9): Data contains differences: Data differs at [1, 1]: a> 1.7922435 b> 1.7875497 Data differs at [2, 1]: a> 1.7922435 b> 1.7875497 Data differs at [3, 1]: a> 1.7922435 b> 1.7875497 Data differs at [4, 1]: a> 1.7922435 b> 1.7875497 Data differs at [5, 1]: a> 1.7922435 b> 1.7875497 Data differs at [6, 1]: a> 1.7922435 b> 1.7875497 Data differs at [7, 1]: a> 1.7922435 b> 1.7875497 Data differs at [8, 1]: a> 1.7922435 b> 1.7875497 Data differs at [9, 1]: a> 1.7922435 b> 1.7875497 Data differs at [10, 1]: a> 1.7922435 b> 1.7875497 ... 55176 different pixels found (100.00% different). Extension HDU 61 (VAR_POISSON, 9): Data contains differences: Data differs at [1, 1]: a> 0.00038881451 b> 0.00039086334 Data differs at [2, 1]: a> 0.0004118398 b> 0.00042644018 Data differs at [3, 1]: a> 0.00038849132 b> 0.00040312088 Data differs at [4, 1]: a> 0.00041337454 b> 0.00039108226 Data differs at [5, 1]: a> 0.00041502528 b> 0.0003768711 Data differs at [6, 1]: a> 0.00039139003 b> 0.0004251499 Data differs at [7, 1]: a> 0.00041772542 b> 0.00043529167 Data differs at [8, 1]: a> 0.00039268463 b> 0.00042584812 Data differs at [9, 1]: a> 0.00037906787 b> 0.00040800878 Data differs at [10, 1]: a> 0.00041859446 b> 0.0003918399 ... 55032 different pixels found (99.74% different). Extension HDU 62 (VAR_RNOISE, 9): Data contains differences: Data differs at [1, 1]: a> 4.224553e-06 b> 4.444852e-06 Data differs at [2, 1]: a> 3.4088628e-06 b> 4.874177e-06 Data differs at [3, 1]: a> 3.868535e-06 b> 2.5592135e-06 Data differs at [4, 1]: a> 3.8915937e-06 b> 4.6309597e-06 Data differs at [5, 1]: a> 4.2061934e-06 b> 5.220881e-06 Data differs at [6, 1]: a> 5.549274e-06 b> 3.6613828e-06 Data differs at [7, 1]: a> 3.116495e-06 b> 3.3503884e-06 Data differs at [8, 1]: a> 4.1193985e-06 b> 4.377403e-06 Data differs at [9, 1]: a> 4.656189e-06 b> 3.4719258e-06 Data differs at [10, 1]: a> 4.6361974e-06 b> 3.2270991e-06 ... 52507 different pixels found (95.16% different). Extension HDU 63 (VAR_FLAT, 9): Data contains differences: Data differs at [113, 1]: a> 1.4214218e-07 b> 1.9844174e-08 Data differs at [119, 1]: a> 2.5894991e-08 b> 1.5745938e-07 Data differs at [122, 1]: a> 2.652957e-07 b> 1.3733384e-07 Data differs at [123, 1]: a> 3.9400356e-07 b> 1.0309822e-07 Data differs at [125, 1]: a> 4.227829e-07 ? ^ - b> 3.2127582e-07 ? ^ + + Data differs at [127, 1]: a> 5.5986595e-07 b> 6.782127e-07 Data differs at [128, 1]: a> 7.1790396e-07 b> 1.0329828e-06 Data differs at [130, 1]: a> 1.4445675e-06 b> 9.4824804e-07 Data differs at [131, 1]: a> 1.9395357e-06 b> 0.0 Data differs at [132, 1]: a> 2.1240514e-06 b> 1.7619503e-06 ... 10858 different pixels found (19.68% different). Extension HDU 64 (SCI, 10): Headers contain differences: Headers have different number of cards: a: 24 b: 26 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 189 b> 191 Keyword SLTSIZE1 has different values: a> 139 b> 140 Keyword SLTSIZE2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 65 (DQ, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 66 (ERR, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 67 (WAVELENGTH, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 68 (VAR_POISSON, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 69 (VAR_RNOISE, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 70 (VAR_FLAT, 10): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484dbf1040>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[x1d] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_x1d.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_x1d.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-07 Extension HDU 1 (EXTRACT1D, 1): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.40553434784723 Extra keyword 'SRCRA' in b: 3.592040812067641 Data contains differences: Column FLUX data differs in row 124: a> nan b> 0.19965209435453296 Column FLUX data differs in row 125: a> 0.19958615840908814 b> 0.08338277790683482 Column FLUX data differs in row 126: a> 0.08341154852786625 b> 0.03449557935081653 Column FLUX data differs in row 127: a> 0.034498400786272476 b> 0.012638582714221514 Column FLUX data differs in row 128: a> 0.01264034428322908 b> 0.005567820821205211 Column FLUX data differs in row 129: a> 0.005568299248189053 b> 0.003188758983656166 Column FLUX data differs in row 130: a> 0.003188177393866602 b> 0.0015855300448706306 Column FLUX data differs in row 131: a> 0.001585639431825048 b> 0.000772139447951667 Column FLUX data differs in row 132: a> 0.0007721346410758137 b> 0.0005796982121486047 Column FLUX data differs in row 133: a> 0.0005798783091780554 b> 0.000516048352137196 ...840 additional difference(s) found. ... 850 different table data element(s) found (13.15% different). Extension HDU 2 (EXTRACT1D, 2): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.40018067148927 Extra keyword 'SRCRA' in b: 3.586356414491374 Data contains differences: Column FLUX data differs in row 84: a> nan b> 0.2698664362820044 Column FLUX data differs in row 85: a> 0.26962464603525377 b> 0.12211139396311618 Column FLUX data differs in row 86: a> 0.12198819415895164 b> 0.04962625225288255 Column FLUX data differs in row 87: a> 0.049562661762685284 b> 0.018258746925414057 Column FLUX data differs in row 88: a> 0.018230759394177298 b> 0.006916025273632863 Column FLUX data differs in row 89: a> 0.006904931872381813 b> 0.0038529326099182304 Column FLUX data differs in row 90: a> 0.003847998458144548 b> 0.0020143717741633524 Column FLUX data differs in row 91: a> 0.0020123750565986557 b> 0.0009705948534178853 Column FLUX data differs in row 92: a> 0.000969239564575972 b> 0.0006048949833789275 Column FLUX data differs in row 93: a> 0.0006042013648555952 b> 0.0005068685810364957 ...739 additional difference(s) found. ... 749 different table data element(s) found (16.71% different). Extension HDU 3 (EXTRACT1D, 3): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.39411309485647 Extra keyword 'SRCRA' in b: 3.585624631060788 Keyword NAXIS2 has different values: a> 321 b> 322 Data contains differences: Table rows differ: a: 321 b: 322 No further data comparison performed. Extension HDU 4 (EXTRACT1D, 4): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.39163095906152 Extra keyword 'SRCRA' in b: 3.59464814053007 Keyword NAXIS2 has different values: a> 228 b> 229 Data contains differences: Table rows differ: a: 228 b: 229 No further data comparison performed. Extension HDU 5 (EXTRACT1D, 5): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.39602892937478 Extra keyword 'SRCRA' in b: 3.58789771169632 Keyword NAXIS2 has different values: a> 203 b> 205 Data contains differences: Table rows differ: a: 203 b: 205 No further data comparison performed. Extension HDU 6 (EXTRACT1D, 6): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Data contains differences: Column FLUX data differs in row 161: a> nan b> 0.02055506829163751 Column FLUX data differs in row 162: a> 0.020566550871851032 b> 0.009067604615706314 Column FLUX data differs in row 163: a> 0.009072489957081147 b> 0.0037622867952118596 Column FLUX data differs in row 164: a> 0.0037641753564277825 b> 0.0014371262123989322 Column FLUX data differs in row 165: a> 0.001437808952700884 b> 0.0006427779261091129 Column FLUX data differs in row 166: a> 0.0006430716156747743 b> 0.00036997742474840866 Column FLUX data differs in row 167: a> 0.00037013865236702227 b> 0.00019656917044116515 Column FLUX data differs in row 168: a> 0.00019664895703308365 b> 9.840838855921807e-05 Column FLUX data differs in row 169: a> 9.844657628756582e-05 b> 7.485421522527449e-05 Column FLUX data differs in row 170: a> 7.488107704058298e-05 b> 6.865055736478408e-05 ...799 additional difference(s) found. ... 809 different table data element(s) found (13.62% different). Extension HDU 7 (EXTRACT1D, 7): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.40926138863649 Extra keyword 'SRCRA' in b: 3.579587921874186 Keyword NAXIS2 has different values: a> 209 b> 211 Data contains differences: Table rows differ: a: 209 b: 211 No further data comparison performed. Extension HDU 8 (EXTRACT1D, 8): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.38980139908971 Extra keyword 'SRCRA' in b: 3.600004699000835 Keyword NAXIS2 has different values: a> 236 b> 237 Data contains differences: Table rows differ: a: 236 b: 237 No further data comparison performed. Extension HDU 9 (EXTRACT1D, 9): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.3860237133523 Extra keyword 'SRCRA' in b: 3.569829752935783 Data contains differences: Column FLUX data differs in row 101: a> nan b> 0.05615284242707679 Column FLUX data differs in row 102: a> 0.05616139296423502 b> 0.02412590346558556 Column FLUX data differs in row 103: a> 0.02413037459729436 b> 0.00916803769701577 Column FLUX data differs in row 104: a> 0.009174279185418032 b> 0.003397537889758585 Column FLUX data differs in row 105: a> 0.0033965946326864407 b> 0.0016459808930530768 Column FLUX data differs in row 106: a> 0.0016463490659715892 b> 0.000891709815032751 Column FLUX data differs in row 107: a> 0.0008908816672572794 b> 0.0004284594250636278 Column FLUX data differs in row 108: a> 0.00042849662801539885 b> 0.00021847853103165005 Column FLUX data differs in row 109: a> 0.0002184973556952005 b> 0.00017133875846272038 Column FLUX data differs in row 110: a> 0.00017132569453140543 b> 0.00014841618141793223 ...695 additional difference(s) found. ... 705 different table data element(s) found (16.18% different). Extension HDU 10 (EXTRACT1D, 10): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Table rows differ: a: 189 b: 191 No further data comparison performed. assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484ddedd60>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00015-cal] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-05 Extension HDU 1 (SCI, 1): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 189 b> 191 Keyword SLTSIZE1 has different values: a> 139 b> 140 Keyword SLTSIZE2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 2 (DQ, 1): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 3 (ERR, 1): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 4 (WAVELENGTH, 1): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 5 (VAR_POISSON, 1): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 6 (VAR_RNOISE, 1): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 7 (VAR_FLAT, 1): Headers contain differences: Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Data dimensions differ: a: 139 x 189 b: 140 x 191 No further data comparison performed. Extension HDU 8 (SCI, 2): Headers contain differences: Headers have different number of cards: a: 50 b: 52 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 194 b> 195 Keyword SLTSIZE1 has different values: a> 139 b> 140 Keyword SLTSIZE2 has different values: a> 194 b> 195 Data contains differences: Data dimensions differ: a: 139 x 194 b: 140 x 195 No further data comparison performed. Extension HDU 9 (DQ, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 194 b> 195 Data contains differences: Data dimensions differ: a: 139 x 194 b: 140 x 195 No further data comparison performed. Extension HDU 10 (ERR, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 194 b> 195 Data contains differences: Data dimensions differ: a: 139 x 194 b: 140 x 195 No further data comparison performed. Extension HDU 11 (WAVELENGTH, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 194 b> 195 Data contains differences: Data dimensions differ: a: 139 x 194 b: 140 x 195 No further data comparison performed. Extension HDU 12 (VAR_POISSON, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 194 b> 195 Data contains differences: Data dimensions differ: a: 139 x 194 b: 140 x 195 No further data comparison performed. Extension HDU 13 (VAR_RNOISE, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 194 b> 195 Data contains differences: Data dimensions differ: a: 139 x 194 b: 140 x 195 No further data comparison performed. Extension HDU 14 (VAR_FLAT, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 194 b> 195 Data contains differences: Data dimensions differ: a: 139 x 194 b: 140 x 195 No further data comparison performed. Extension HDU 15 (SCI, 3): Headers contain differences: Headers have different number of cards: a: 50 b: 52 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword SLTSIZE1 has different values: a> 213 b> 214 Keyword SLTSTRT2 has different values: a> 53 b> 54 Data contains differences: Data dimensions differ: a: 213 x 133 b: 214 x 133 No further data comparison performed. Extension HDU 16 (DQ, 3): Data contains differences: Data dimensions differ: a: 213 x 133 b: 214 x 133 No further data comparison performed. Extension HDU 17 (ERR, 3): Data contains differences: Data dimensions differ: a: 213 x 133 b: 214 x 133 No further data comparison performed. Extension HDU 18 (WAVELENGTH, 3): Data contains differences: Data dimensions differ: a: 213 x 133 b: 214 x 133 No further data comparison performed. Extension HDU 19 (VAR_POISSON, 3): Data contains differences: Data dimensions differ: a: 213 x 133 b: 214 x 133 No further data comparison performed. Extension HDU 20 (VAR_RNOISE, 3): Data contains differences: Data dimensions differ: a: 213 x 133 b: 214 x 133 No further data comparison performed. Extension HDU 21 (VAR_FLAT, 3): Data contains differences: Data dimensions differ: a: 213 x 133 b: 214 x 133 No further data comparison performed. Extension HDU 22 (SCI, 4): Headers contain differences: Headers have different number of cards: a: 50 b: 52 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 132 b> 134 Keyword SLTSIZE1 has different values: a> 213 b> 214 Keyword SLTSIZE2 has different values: a> 132 b> 134 Data contains differences: Data dimensions differ: a: 213 x 132 b: 214 x 134 No further data comparison performed. Extension HDU 23 (DQ, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 132 b> 134 Data contains differences: Data dimensions differ: a: 213 x 132 b: 214 x 134 No further data comparison performed. Extension HDU 24 (ERR, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 132 b> 134 Data contains differences: Data dimensions differ: a: 213 x 132 b: 214 x 134 No further data comparison performed. Extension HDU 25 (WAVELENGTH, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 132 b> 134 Data contains differences: Data dimensions differ: a: 213 x 132 b: 214 x 134 No further data comparison performed. Extension HDU 26 (VAR_POISSON, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 132 b> 134 Data contains differences: Data dimensions differ: a: 213 x 132 b: 214 x 134 No further data comparison performed. Extension HDU 27 (VAR_RNOISE, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 132 b> 134 Data contains differences: Data dimensions differ: a: 213 x 132 b: 214 x 134 No further data comparison performed. Extension HDU 28 (VAR_FLAT, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 132 b> 134 Data contains differences: Data dimensions differ: a: 213 x 132 b: 214 x 134 No further data comparison performed. assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f4842750c70>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00015-x1d] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-05 Extension HDU 1 (EXTRACT1D, 1): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 189 b> 191 Data contains differences: Table rows differ: a: 189 b: 191 No further data comparison performed. Extension HDU 2 (EXTRACT1D, 2): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 194 b> 195 Data contains differences: Table rows differ: a: 194 b: 195 No further data comparison performed. Extension HDU 3 (EXTRACT1D, 3): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 213 b> 214 Data contains differences: Table rows differ: a: 213 b: 214 No further data comparison performed. Extension HDU 4 (EXTRACT1D, 4): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.38220367687618 Extra keyword 'SRCRA' in b: 3.609501210445426 Keyword NAXIS2 has different values: a> 213 b> 214 Data contains differences: Table rows differ: a: 213 b: 214 No further data comparison performed. assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484277b520>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00015-c1d] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-05 Extension HDU 1 (COMBINE1D, 1): Headers contain differences: Keyword NAXIS2 has different values: a> 222 b> 223 Data contains differences: Table rows differ: a: 222 b: 223 No further data comparison performed. assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484276b2b0>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00104-cal] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-05 Extension HDU 1 (SCI, 1): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Keyword SLTSIZE1 has different values: a> 133 b> 134 Keyword SLTSTRT2 has different values: a> 217 b> 218 Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 2 (DQ, 1): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 3 (ERR, 1): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 4 (WAVELENGTH, 1): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 5 (VAR_POISSON, 1): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 6 (VAR_RNOISE, 1): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 7 (VAR_FLAT, 1): Data contains differences: Data dimensions differ: a: 133 x 330 b: 134 x 330 No further data comparison performed. Extension HDU 8 (SCI, 2): Headers contain differences: Headers have different number of cards: a: 50 b: 52 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Keyword NAXIS2 has different values: a> 329 b> 331 Keyword SLTSIZE2 has different values: a> 329 b> 331 Data contains differences: Data dimensions differ: a: 128 x 329 b: 128 x 331 No further data comparison performed. Extension HDU 9 (DQ, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 329 b> 331 Data contains differences: Data dimensions differ: a: 128 x 329 b: 128 x 331 No further data comparison performed. Extension HDU 10 (ERR, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 329 b> 331 Data contains differences: Data dimensions differ: a: 128 x 329 b: 128 x 331 No further data comparison performed. Extension HDU 11 (WAVELENGTH, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 329 b> 331 Data contains differences: Data dimensions differ: a: 128 x 329 b: 128 x 331 No further data comparison performed. Extension HDU 12 (VAR_POISSON, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 329 b> 331 Data contains differences: Data dimensions differ: a: 128 x 329 b: 128 x 331 No further data comparison performed. Extension HDU 13 (VAR_RNOISE, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 329 b> 331 Data contains differences: Data dimensions differ: a: 128 x 329 b: 128 x 331 No further data comparison performed. Extension HDU 14 (VAR_FLAT, 2): Headers contain differences: Keyword NAXIS2 has different values: a> 329 b> 331 Data contains differences: Data dimensions differ: a: 128 x 329 b: 128 x 331 No further data comparison performed. Extension HDU 15 (SCI, 3): Headers contain differences: Headers have different number of cards: a: 50 b: 52 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Keyword SLTSTRT2 has different values: a> 287 b> 288 Data contains differences: Data differs at [89, 1]: a> -74.07165 b> -339.34348 Data differs at [90, 1]: a> 286.5817 b> 121.14829 Data differs at [91, 1]: a> 26.508356 b> 68.865234 Data differs at [92, 1]: a> 27.633263 b> 5.8705287 Data differs at [93, 1]: a> 3.9196436 b> 18.383652 Data differs at [94, 1]: a> -3.9956641 b> 5.262102 Data differs at [95, 1]: a> 1.0805693 b> 0.46943638 Data differs at [96, 1]: a> 1.0126586 b> 2.5576546 Data differs at [97, 1]: a> 1.0354162 b> 0.49483985 Data differs at [98, 1]: a> 0.38727894 b> 0.4743746 ... 17663 different pixels found (38.76% different). Extension HDU 16 (DQ, 3): Data contains differences: Data differs at [8, 1]: a> 1 b> 5 Data differs at [12, 1]: a> 1 b> 5 Data differs at [18, 1]: a> 1 b> 5 Data differs at [19, 1]: a> 1 b> 5 Data differs at [26, 1]: a> 16795649 b> 5 Data differs at [28, 1]: a> 1 b> 5 Data differs at [30, 1]: a> 5 b> 1 Data differs at [65, 1]: a> 5 b> 1 Data differs at [66, 1]: a> 5 b> 1 Data differs at [67, 1]: a> 5 b> 1 ... 5961 different pixels found (13.08% different). Extension HDU 17 (ERR, 3): Data contains differences: Data differs at [89, 1]: a> 239.50731 b> 246.01814 Data differs at [90, 1]: a> 108.53022 b> 107.718636 Data differs at [91, 1]: a> 42.71162 b> 42.914448 Data differs at [92, 1]: a> 15.748254 b> 14.782429 Data differs at [93, 1]: a> 5.6530185 b> 5.7710247 Data differs at [94, 1]: a> 2.874773 b> 2.9838076 Data differs at [95, 1]: a> 1.515495 b> 1.5497639 Data differs at [96, 1]: a> 0.75331247 b> 0.7716013 Data differs at [97, 1]: a> 0.40976158 b> 0.3974131 Data differs at [98, 1]: a> 0.33863994 b> 0.35282147 ... 17659 different pixels found (38.75% different). Extension HDU 19 (VAR_POISSON, 3): Data contains differences: Data differs at [89, 1]: a> 53821.113 b> 56879.93 Data differs at [90, 1]: a> 11154.925 b> 11042.384 Data differs at [91, 1]: a> 1798.8871 b> 1823.0869 Data differs at [92, 1]: a> 244.96977 b> 215.16312 Data differs at [93, 1]: a> 31.496395 b> 32.830643 Data differs at [94, 1]: a> 8.131156 b> 8.765586 Data differs at [95, 1]: a> 2.2631826 b> 2.3752425 Data differs at [96, 1]: a> 0.5587288 b> 0.58819455 Data differs at [97, 1]: a> 0.1656143 b> 0.15637957 Data differs at [98, 1]: a> 0.112855755 b> 0.1227286 ... 17653 different pixels found (38.74% different). Extension HDU 20 (VAR_RNOISE, 3): Data contains differences: Data differs at [89, 1]: a> 3542.5764 b> 3643.7988 Data differs at [90, 1]: a> 622.9277 b> 560.7641 Data differs at [91, 1]: a> 25.387377 b> 18.510715 Data differs at [92, 1]: a> 3.0291412 b> 3.3567462 Data differs at [93, 1]: a> 0.46004888 b> 0.47041282 Data differs at [94, 1]: a> 0.13299814 b> 0.13722908 Data differs at [95, 1]: a> 0.033529703 b> 0.026523259 Data differs at [96, 1]: a> 0.008739389 b> 0.0070996303 Data differs at [97, 1]: a> 0.0022777675 b> 0.0015548315 Data differs at [98, 1]: a> 0.0018196771 b> 0.0017517891 ... 17485 different pixels found (38.37% different). Extension HDU 21 (VAR_FLAT, 3): Data contains differences: Data differs at [89, 1]: a> 0.060233466 b> 1.2028182 Data differs at [90, 1]: a> 0.9562432 b> 0.15874648 Data differs at [91, 1]: a> 0.0082276 b> 0.052054167 Data differs at [92, 1]: a> 0.008553854 b> 0.00036526716 Data differs at [93, 1]: a> 0.00017248475 b> 0.0036787412 Data differs at [94, 1]: a> 0.00016593159 b> 0.00029205868 Data differs at [95, 1]: a> 1.2531296e-05 b> 2.3370512e-06 Data differs at [96, 1]: a> 1.1479423e-05 b> 7.435147e-05 Data differs at [103, 1]: a> 7.233171e-05 b> 5.279052e-10 Data differs at [104, 1]: a> 2.0314612e-06 b> 0.0035732575 ... 13493 different pixels found (29.61% different). Extension HDU 22 (SCI, 4): Headers contain differences: Headers have different number of cards: a: 50 b: 52 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Keyword NAXIS2 has different values: a> 255 b> 257 Keyword SLTSIZE2 has different values: a> 255 b> 257 Data contains differences: Data dimensions differ: a: 186 x 255 b: 186 x 257 No further data comparison performed. Extension HDU 23 (DQ, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 255 b> 257 Data contains differences: Data dimensions differ: a: 186 x 255 b: 186 x 257 No further data comparison performed. Extension HDU 24 (ERR, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 255 b> 257 Data contains differences: Data dimensions differ: a: 186 x 255 b: 186 x 257 No further data comparison performed. Extension HDU 25 (WAVELENGTH, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 255 b> 257 Data contains differences: Data dimensions differ: a: 186 x 255 b: 186 x 257 No further data comparison performed. Extension HDU 26 (VAR_POISSON, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 255 b> 257 Data contains differences: Data dimensions differ: a: 186 x 255 b: 186 x 257 No further data comparison performed. Extension HDU 27 (VAR_RNOISE, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 255 b> 257 Data contains differences: Data dimensions differ: a: 186 x 255 b: 186 x 257 No further data comparison performed. Extension HDU 28 (VAR_FLAT, 4): Headers contain differences: Keyword NAXIS2 has different values: a> 255 b> 257 Data contains differences: Data dimensions differ: a: 186 x 255 b: 186 x 257 No further data comparison performed. assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f4842a42f10>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00104-x1d] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-05 Extension HDU 1 (EXTRACT1D, 1): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Data contains differences: Column FLUX data differs in row 161: a> nan b> 0.02055506829163751 Column FLUX data differs in row 162: a> 0.020566550871851032 b> 0.009067604615706314 Column FLUX data differs in row 163: a> 0.009072489957081147 b> 0.0037622867952118596 Column FLUX data differs in row 164: a> 0.0037641753564277825 b> 0.0014371262123989322 Column FLUX data differs in row 165: a> 0.001437808952700884 b> 0.0006427779261091129 Column FLUX data differs in row 166: a> 0.0006430716156747743 b> 0.00036997742474840866 Column FLUX data differs in row 167: a> 0.00037013865236702227 b> 0.00019656917044116515 Column FLUX data differs in row 168: a> 0.00019664895703308365 b> 9.840838855921807e-05 Column FLUX data differs in row 169: a> 9.844657628756582e-05 b> 7.485421522527449e-05 Column FLUX data differs in row 177: a> 0.00010259910570628918 b> 0.00011531181404241202 ...668 additional difference(s) found. ... 678 different table data element(s) found (11.41% different). Extension HDU 2 (EXTRACT1D, 2): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Keyword NAXIS2 has different values: a> 329 b> 331 Data contains differences: Table rows differ: a: 329 b: 331 No further data comparison performed. Extension HDU 3 (EXTRACT1D, 3): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Data contains differences: Column FLUX data differs in row 156: a> 0.07727562031030033 b> 0.07723304687280258 Column NPIXELS data differs in row 89: a> 253.0 ? ^ b> 254.0 ? ^ Column NPIXELS data differs in row 102: a> 251.0 ? ^ b> 252.0 ? ^ Column NPIXELS data differs in row 146: a> 250.0 ? ^ b> 251.0 ? ^ Column SB_ERROR data differs in row 88: a> 16.91110441985148 b> 16.91261606116817 Column SB_ERROR data differs in row 89: a> 7.536648997547137 b> 7.518632953218416 Column SB_ERROR data differs in row 90: a> 3.1066664117794707 b> 3.1072979112598365 Column SB_ERROR data differs in row 91: a> 1.136964134279896 b> 1.136820820343384 Column SB_ERROR data differs in row 92: a> 0.4257353952459227 b> 0.4258406820652758 Column SB_ERROR data differs in row 93: a> 0.22981130276975484 b> 0.229915106802338 ...95 additional difference(s) found. ... 105 different table data element(s) found (3.28% different). Extension HDU 4 (EXTRACT1D, 4): Headers contain differences: Headers have different number of cards: a: 74 b: 76 Extra keyword 'SRCDEC' in b: -30.40915257066028 Extra keyword 'SRCRA' in b: 3.612617565864074 Data contains differences: Column FLUX data differs in row 88: a> 0.06362001883711443 b> 0.06369133476448503 Column FLUX data differs in row 89: a> 0.029826782742881017 b> 0.02981598052410249 Column NPIXELS data differs in row 88: a> 249.0 b> 251.0 Column NPIXELS data differs in row 89: a> 252.0 ? ^ b> 254.0 ? ^ Column NPIXELS data differs in row 90: a> 250.0 ? ^ b> 252.0 ? ^ Column NPIXELS data differs in row 91: a> 251.0 ? ^ b> 253.0 ? ^ Column NPIXELS data differs in row 92: a> 254.0 ? ^ b> 256.0 ? ^ Column NPIXELS data differs in row 93: a> 253.0 ? ^ b> 255.0 ? ^ Column NPIXELS data differs in row 94: a> 255.0 ? ^ b> 257.0 ? ^ Column NPIXELS data differs in row 95: a> 253.0 ? ^ b> 255.0 ? ^ ...239 additional difference(s) found. ... 249 different table data element(s) found (7.44% different). assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484276aac0>.identical FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00104-c1d] - AssertionError: fitsdiff: 5.1 a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits HDU(s) not to be compared: ASDF Keyword(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Table column(s) not to be compared: CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* Maximum number of different data values to be reported: 10 Relative tolerance: 1e-05, Absolute tolerance: 1e-05 Extension HDU 1 (COMBINE1D, 1): Headers contain differences: Keyword NAXIS2 has different values: a> 408 b> 411 Data contains differences: Table rows differ: a: 408 b: 411 No further data comparison performed. assert False + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f4842574880>.identical == 14 failed, 15 passed, 554 deselected, 112870 warnings in 789.98s (0:13:09) ==
HTML(html_report)
Report generated on 04-Dec-2022 at 03:49:13 by pytest-html v3.2.0
| BUILD_ID | 126 |
| BUILD_NUMBER | 126 |
| BUILD_TAG | jenkins-Notebooks-jwst_validation_notebooks_spacetelescope-126 |
| BUILD_URL | https://plwishmaster.stsci.edu:8081/job/Notebooks/job/jwst_validation_notebooks_spacetelescope/126/ |
| EXECUTOR_NUMBER | 28 |
| GIT_BRANCH | origin/master |
| GIT_COMMIT | f0c18233cd0fcb3e941bff4e8793c6fbaf3467e2 |
| GIT_URL | https://github.com/spacetelescope/jwst_validation_notebooks |
| JENKINS_URL | https://plwishmaster.stsci.edu:8081/ |
| JOB_NAME | Notebooks/jwst_validation_notebooks_spacetelescope |
| NODE_NAME | pljwvalnb.stsci.edu |
| Packages | {"pluggy": "1.0.0", "pytest": "7.2.0"} |
| Platform | Linux-3.10.0-1160.76.1.el7.x86_64-x86_64-with-glibc2.17 |
| Plugins | {"anyio": "3.6.2", "asdf": "2.13.0", "ci-watson": "0.6.1", "cov": "4.0.0", "doctestplus": "0.12.1", "forked": "1.4.0", "html": "3.2.0", "jwst": "1.8.2", "metadata": "2.0.4", "openfiles": "0.5.0", "requests-mock": "1.10.0", "xdist": "2.5.0"} |
| Python | 3.9.13 |
| WORKSPACE | /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope |
29 tests ran in 789.35 seconds.
(Un)check the boxes to filter the results.
15 passed, 0 skipped, 14 failed, 0 errors, 0 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[bsub] | 0.95 | |
|
run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...01_nis_bsub.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_bsub.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'bsub' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_bsub.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_bsub.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [5, 5]: E a> 0.82082546 E b> 0.82067204 E Data differs at [6, 5]: E a> 0.089759365 E b> 0.08975724 E Data differs at [7, 5]: E a> 1.203846 E b> 1.2038013 E Data differs at [8, 5]: E a> -0.17252588 E b> -0.17267835 E Data differs at [9, 5]: E a> -0.060819507 E b> -0.06097293 E Data differs at [10, 5]: E a> -0.06569576 E b> -0.065849185 E Data differs at [11, 5]: E a> -0.083259344 E b> -0.083412886 E Data differs at [12, 5]: E a> -0.038711846 E b> -0.03883761 E Data differs at [13, 5]: E a> -0.15667588 E b> -0.15680462 E Data differs at [14, 5]: E a> 0.027448654 E b> 0.027335584 E ... E 4155780 different pixels found (99.08% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f48aa5cc880>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[cal] | 0.53 | |
|
run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...0001_nis_cal.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'cal' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_cal.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 56 E b: 58 E Extra keyword 'SRCDEC' in b: -30.40553434784723 E Extra keyword 'SRCRA' in b: 3.592040812067641 E Keyword SLTSTRT1 has different values: E a> 1389 E ? - E b> 1390 E ? + E Keyword SLTSTRT2 has different values: E a> 1113 E ? ^ E b> 1114 E ? ^ E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 1363.4772 E Data differs at [2, 125]: E a> 0.0 E b> 1314.6934 E Data differs at [3, 125]: E a> 0.0 E b> 1513.2789 E Data differs at [4, 125]: E a> 0.0 E b> 1438.8994 E Data differs at [5, 125]: E a> 0.0 E b> 1932.6174 E Data differs at [6, 125]: E a> 0.0 E b> 1949.8593 E Data differs at [7, 125]: E a> 0.0 E b> 2132.382 E Data differs at [8, 125]: E a> 0.0 E b> 1579.2274 E Data differs at [9, 125]: E a> 0.0 E b> 1932.2921 E Data differs at [10, 125]: E a> 0.0 E b> 1362.5513 E ... E 15249 different pixels found (19.22% different). E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1 E b> 5 E Data differs at [2, 1]: E a> 1 E b> 5 E Data differs at [5, 1]: E a> 1 E b> 5 E Data differs at [16, 1]: E a> 1 E b> 5 E Data differs at [17, 1]: E a> 1 E b> 5 E Data differs at [28, 1]: E a> 1 E b> 5 E Data differs at [32, 1]: E a> 5 E b> 1 E Data differs at [44, 1]: E a> 5 E b> 1 E Data differs at [46, 1]: E a> 1 E b> 16777221 E Data differs at [48, 1]: E a> 1 E b> 5 E ... E 13566 different pixels found (17.10% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 191.5967 E Data differs at [2, 125]: E a> 0.0 E b> 186.99792 E Data differs at [3, 125]: E a> 0.0 E b> 190.20242 E Data differs at [4, 125]: E a> 0.0 E b> 188.07532 E Data differs at [5, 125]: E a> 0.0 E b> 192.07884 E Data differs at [6, 125]: E a> 0.0 E b> 199.28291 E Data differs at [7, 125]: E a> 0.0 E b> 197.129 E Data differs at [8, 125]: E a> 0.0 E b> 191.76932 E Data differs at [9, 125]: E a> 0.0 E b> 192.68011 E Data differs at [10, 125]: E a> 0.0 E b> 192.26921 E ... E 15246 different pixels found (19.22% different). E E Extension HDU 4 (WAVELENGTH, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [2, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [3, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [4, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [5, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [6, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [7, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [8, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [9, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [10, 1]: E a> 1.9013734 E b> 1.8966796 E ... E 79339 different pixels found (100.00% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 36424.82 E Data differs at [2, 125]: E a> 0.0 E b> 34599.67 E Data differs at [3, 125]: E a> 0.0 E b> 35775.6 E Data differs at [4, 125]: E a> 0.0 E b> 35013.43 E Data differs at [5, 125]: E a> 0.0 E b> 36640.895 E Data differs at [6, 125]: E a> 0.0 E b> 39414.37 E Data differs at [7, 125]: E a> 0.0 E b> 38401.395 E Data differs at [8, 125]: E a> 0.0 E b> 36373.76 E Data differs at [9, 125]: E a> 0.0 E b> 36752.85 E Data differs at [10, 125]: E a> 0.0 E b> 36637.6 E ... E 15248 different pixels found (19.22% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 261.33878 E Data differs at [2, 125]: E a> 0.0 E b> 348.2399 E Data differs at [3, 125]: E a> 0.0 E b> 372.7315 E Data differs at [4, 125]: E a> 0.0 E b> 334.8433 E Data differs at [5, 125]: E a> 0.0 E b> 208.7587 E Data differs at [6, 125]: E a> 0.0 E b> 254.74019 E Data differs at [7, 125]: E a> 0.0 E b> 404.5371 E Data differs at [8, 125]: E a> 0.0 E b> 372.12772 E Data differs at [9, 125]: E a> 0.0 E b> 327.5682 E Data differs at [10, 125]: E a> 0.0 E b> 307.2687 E ... E 15247 different pixels found (19.22% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 23.128403 E Data differs at [2, 125]: E a> 0.0 E b> 20.311348 E Data differs at [3, 125]: E a> 0.0 E b> 28.629303 E Data differs at [4, 125]: E a> 0.0 E b> 24.053085 E Data differs at [5, 125]: E a> 0.0 E b> 44.628468 E Data differs at [6, 125]: E a> 0.0 E b> 44.564407 E Data differs at [7, 125]: E a> 0.0 E b> 53.908096 E Data differs at [8, 125]: E a> 0.0 E b> 29.58187 E Data differs at [9, 125]: E a> 0.0 E b> 45.20958 E Data differs at [10, 125]: E a> 0.0 E b> 22.578938 E ... E 15245 different pixels found (19.22% different). E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.40018067148927 E Extra keyword 'SRCRA' in b: 3.586356414491374 E Keyword SLTSTRT1 has different values: E a> 1032 E ? ^ E b> 1033 E ? ^ E Keyword SLTSTRT2 has different values: E a> 1314 E ? ^ E b> 1315 E ? ^ E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 3985.8796 E Data differs at [2, 85]: E a> 0.0 E b> 4118.5845 E Data differs at [3, 85]: E a> 0.0 E b> -58.99588 E Data differs at [4, 85]: E a> 0.0 E b> 4555.2866 E Data differs at [5, 85]: E a> 0.0 E b> 5155.0547 E Data differs at [6, 85]: E a> 0.0 E b> 4215.951 E Data differs at [7, 85]: E a> 0.0 E b> 4324.001 E Data differs at [8, 85]: E a> 0.0 E b> 4124.1924 E Data differs at [9, 85]: E a> 0.0 E b> 3861.4543 E Data differs at [10, 85]: E a> 0.0 E b> 4730.775 E ... E 15957 different pixels found (28.11% different). E E Extension HDU 9 (DQ, 2): E E Data contains differences: E Data differs at [2, 1]: E a> 5 E b> 1 E Data differs at [3, 1]: E a> 5 E b> 1 E Data differs at [4, 1]: E a> 5 E b> 1 E Data differs at [12, 1]: E a> 1 E b> 5 E Data differs at [13, 1]: E a> 1 E b> 5 E Data differs at [15, 1]: E a> 5 E b> 8388613 E Data differs at [18, 1]: E a> 16779265 E b> 1 E Data differs at [20, 1]: E a> 1 E b> 35914753 E Data differs at [46, 1]: E a> 5 E b> 1 E Data differs at [47, 1]: E a> 5 E b> 1 E ... E 9663 different pixels found (17.02% different). E E Extension HDU 10 (ERR, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 300.3294 E Data differs at [2, 85]: E a> 0.0 E b> 280.55493 E Data differs at [3, 85]: E a> 0.0 E b> 85.338104 E Data differs at [4, 85]: E a> 0.0 E b> 275.2996 E Data differs at [5, 85]: E a> 0.0 E b> 305.31372 E Data differs at [6, 85]: E a> 0.0 E b> 287.1998 E Data differs at [7, 85]: E a> 0.0 E b> 280.49844 E Data differs at [8, 85]: E a> 0.0 E b> 278.29352 E Data differs at [9, 85]: E a> 0.0 E b> 285.17935 E Data differs at [10, 85]: E a> 0.0 E b> 288.2807 E ... E 15958 different pixels found (28.11% different). E E Extension HDU 11 (WAVELENGTH, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [2, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [3, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [4, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [5, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [6, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [7, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [8, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [9, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [10, 1]: E a> 1.7154493 E b> 1.7107556 E ... E 56772 different pixels found (100.00% different). E E Extension HDU 12 (VAR_POISSON, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 88679.945 E Data differs at [2, 85]: E a> 0.0 E b> 78039.22 E Data differs at [3, 85]: E a> 0.0 E b> 2036.2072 E Data differs at [4, 85]: E a> 0.0 E b> 75026.336 E Data differs at [5, 85]: E a> 0.0 E b> 92242.55 E Data differs at [6, 85]: E a> 0.0 E b> 81677.06 E Data differs at [7, 85]: E a> 0.0 E b> 77789.305 E Data differs at [8, 85]: E a> 0.0 E b> 76522.234 E Data differs at [9, 85]: E a> 0.0 E b> 80232.84 E Data differs at [10, 85]: E a> 0.0 E b> 82342.11 E ... E 15950 different pixels found (28.09% different). E E Extension HDU 13 (VAR_RNOISE, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 1324.0547 E Data differs at [2, 85]: E a> 0.0 E b> 479.76517 E Data differs at [3, 85]: E a> 0.0 E b> 5246.3857 E Data differs at [4, 85]: E a> 0.0 E b> 524.931 E Data differs at [5, 85]: E a> 0.0 E b> 642.7656 E Data differs at [6, 85]: E a> 0.0 E b> 598.9909 E Data differs at [7, 85]: E a> 0.0 E b> 667.98175 E Data differs at [8, 85]: E a> 0.0 E b> 725.91876 E Data differs at [9, 85]: E a> 0.0 E b> 904.42816 E Data differs at [10, 85]: E a> 0.0 E b> 503.98715 E ... E 15959 different pixels found (28.11% different). E E Extension HDU 14 (VAR_FLAT, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 193.7494 E Data differs at [2, 85]: E a> 0.0 E b> 192.08748 E Data differs at [4, 85]: E a> 0.0 E b> 238.59854 E Data differs at [5, 85]: E a> 0.0 E b> 331.16757 E Data differs at [6, 85]: E a> 0.0 E b> 207.66754 E Data differs at [7, 85]: E a> 0.0 E b> 222.09827 E Data differs at [8, 85]: E a> 0.0 E b> 199.12457 E Data differs at [9, 85]: E a> 0.0 E b> 189.98973 E Data differs at [10, 85]: E a> 0.0 E b> 259.66467 E Data differs at [11, 85]: E a> 0.0 E b> 166.92542 E ... E 15957 different pixels found (28.11% different). E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.39411309485647 E Extra keyword 'SRCRA' in b: 3.585624631060788 E Keyword NAXIS2 has different values: E a> 321 E b> 322 E Keyword SLTSIZE1 has different values: E a> 181 E b> 183 E Keyword SLTSIZE2 has different values: E a> 321 E b> 322 E Keyword SLTSTRT2 has different values: E a> 1177 E ? ^ E b> 1178 E ? ^ E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 16 (DQ, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 17 (ERR, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 18 (WAVELENGTH, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 19 (VAR_POISSON, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 20 (VAR_RNOISE, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 21 (VAR_FLAT, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.39163095906152 E Extra keyword 'SRCRA' in b: 3.59464814053007 E Keyword NAXIS2 has different values: E a> 228 E b> 229 E Keyword SLTSIZE1 has different values: E a> 197 E b> 199 E Keyword SLTSIZE2 has different values: E a> 228 E b> 229 E Keyword SLTSTRT2 has different values: E a> 801 E b> 802 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 29 (SCI, 5): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.39602892937478 E Extra keyword 'SRCRA' in b: 3.58789771169632 E Keyword NAXIS2 has different values: E a> 203 E b> 205 E Keyword SLTSIZE2 has different values: E a> 203 E b> 205 E Keyword SLTSTRT1 has different values: E a> 857 E b> 858 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 30 (DQ, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 31 (ERR, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 32 (WAVELENGTH, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 33 (VAR_POISSON, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 34 (VAR_RNOISE, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 35 (VAR_FLAT, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 36 (SCI, 6): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSIZE1 has different values: E a> 133 E b> 134 E Keyword SLTSTRT2 has different values: E a> 217 E b> 218 E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 37 (DQ, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 38 (ERR, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 39 (WAVELENGTH, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 40 (VAR_POISSON, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 41 (VAR_RNOISE, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 42 (VAR_FLAT, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 43 (SCI, 7): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.40926138863649 E Extra keyword 'SRCRA' in b: 3.579587921874186 E Keyword NAXIS2 has different values: E a> 209 E b> 211 E Keyword SLTSIZE1 has different values: E a> 117 E b> 119 E Keyword SLTSIZE2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 44 (DQ, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 45 (ERR, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 46 (WAVELENGTH, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 47 (VAR_POISSON, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 48 (VAR_RNOISE, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 49 (VAR_FLAT, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 50 (SCI, 8): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.38980139908971 E Extra keyword 'SRCRA' in b: 3.600004699000835 E Keyword NAXIS2 has different values: E a> 236 E b> 237 E Keyword SLTSIZE1 has different values: E a> 10 E b> 11 E Keyword SLTSIZE2 has different values: E a> 236 E b> 237 E Keyword SLTSTRT2 has different values: E a> 521 E b> 522 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 51 (DQ, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 52 (ERR, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 53 (WAVELENGTH, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 54 (VAR_POISSON, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 55 (VAR_RNOISE, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 56 (VAR_FLAT, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 57 (SCI, 9): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.3860237133523 E Extra keyword 'SRCRA' in b: 3.569829752935783 E Keyword SLTSTRT1 has different values: E a> 25 E b> 26 E Keyword SLTSTRT2 has different values: E a> 1791 E ? ^ E b> 1792 E ? ^ E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 566.4476 E Data differs at [2, 102]: E a> 0.0 E b> 338.4689 E Data differs at [3, 102]: E a> 0.0 E b> 159.03731 E Data differs at [4, 102]: E a> 0.0 E b> 145.91112 E Data differs at [5, 102]: E a> 0.0 E b> 305.26697 E Data differs at [6, 102]: E a> 0.0 E b> 195.4081 E Data differs at [7, 102]: E a> 0.0 E b> 491.52173 E Data differs at [8, 102]: E a> 0.0 E b> 190.26485 E Data differs at [9, 102]: E a> 0.0 E b> 597.8491 E Data differs at [10, 102]: E a> 0.0 E b> 1145.7515 E ... E 15732 different pixels found (28.51% different). E E Extension HDU 58 (DQ, 9): E E Data contains differences: E Data differs at [15, 1]: E a> 1 E b> 5 E Data differs at [16, 1]: E a> 1 E b> 5 E Data differs at [20, 1]: E a> 1 E b> 5 E Data differs at [21, 1]: E a> 1 E b> 5 E Data differs at [28, 1]: E a> 1 E b> 5 E Data differs at [32, 1]: E a> 5 E b> 1 E Data differs at [67, 1]: E a> 1 E b> 5 E Data differs at [68, 1]: E a> 1 E b> 5 E Data differs at [70, 1]: E a> 5 E b> 1 E Data differs at [71, 1]: E a> 5 E b> 1 E ... E 8873 different pixels found (16.08% different). E E Extension HDU 59 (ERR, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 152.93675 E Data differs at [2, 102]: E a> 0.0 E b> 148.28142 E Data differs at [3, 102]: E a> 0.0 E b> 146.94443 E Data differs at [4, 102]: E a> 0.0 E b> 134.35672 E Data differs at [5, 102]: E a> 0.0 E b> 141.13506 E Data differs at [6, 102]: E a> 0.0 E b> 136.90057 E Data differs at [7, 102]: E a> 0.0 E b> 144.3461 E Data differs at [8, 102]: E a> 0.0 E b> 134.80638 E Data differs at [9, 102]: E a> 0.0 E b> 141.16875 E Data differs at [10, 102]: E a> 0.0 E b> 148.1953 E ... E 15729 different pixels found (28.51% different). E E Extension HDU 60 (WAVELENGTH, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [2, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [3, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [4, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [5, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [6, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [7, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [8, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [9, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [10, 1]: E a> 1.7922435 E b> 1.7875497 E ... E 55176 different pixels found (100.00% different). E E Extension HDU 61 (VAR_POISSON, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 22543.514 E Data differs at [2, 102]: E a> 0.0 E b> 21227.89 E Data differs at [3, 102]: E a> 0.0 E b> 20556.422 E Data differs at [4, 102]: E a> 0.0 E b> 17923.559 E Data differs at [5, 102]: E a> 0.0 E b> 19693.129 E Data differs at [6, 102]: E a> 0.0 E b> 18591.36 E Data differs at [7, 102]: E a> 0.0 E b> 20624.27 E Data differs at [8, 102]: E a> 0.0 E b> 17996.79 E Data differs at [9, 102]: E a> 0.0 E b> 19779.443 E Data differs at [10, 102]: E a> 0.0 E b> 21791.436 E ... E 15731 different pixels found (28.51% different). E E Extension HDU 62 (VAR_RNOISE, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 842.26373 E Data differs at [2, 102]: E a> 0.0 E b> 758.1521 E Data differs at [3, 102]: E a> 0.0 E b> 1035.9584 E Data differs at [4, 102]: E a> 0.0 E b> 127.92964 E Data differs at [5, 102]: E a> 0.0 E b> 224.8679 E Data differs at [6, 102]: E a> 0.0 E b> 149.96489 E Data differs at [7, 102]: E a> 0.0 E b> 208.6493 E Data differs at [8, 102]: E a> 0.0 E b> 175.55556 E Data differs at [9, 102]: E a> 0.0 E b> 145.00322 E Data differs at [10, 102]: E a> 0.0 E b> 154.8307 E ... E 15730 different pixels found (28.51% different). E E Extension HDU 63 (VAR_FLAT, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 3.8734808 E Data differs at [2, 102]: E a> 0.0 E b> 1.3375401 E Data differs at [3, 102]: E a> 0.0 E b> 0.28612608 E Data differs at [4, 102]: E a> 0.0 E b> 0.23972379 E Data differs at [5, 102]: E a> 0.0 E b> 1.1103776 E Data differs at [6, 102]: E a> 0.0 E b> 0.44549134 E Data differs at [7, 102]: E a> 0.0 E b> 2.8770452 E Data differs at [8, 102]: E a> 0.0 E b> 0.4184726 E Data differs at [9, 102]: E a> 0.0 E b> 4.171244 E Data differs at [10, 102]: E a> 0.0 E b> 15.577756 E ... E 15666 different pixels found (28.39% different). E E Extension HDU 64 (SCI, 10): E E Headers contain differences: E Headers have different number of cards: E a: 32 E b: 34 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 65 (DQ, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 66 (ERR, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 67 (WAVELENGTH, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 68 (VAR_POISSON, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 69 (VAR_RNOISE, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 70 (VAR_FLAT, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f490510c2e0>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[esec] | 1.42 | |
|
run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...01_nis_esec.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_esec.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'esec' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_esec.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_esec.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [5, 5]: E a> 1.3314703 E b> 1.3312213 E Data differs at [6, 5]: E a> 0.14559968 E ? - ^ E b> 0.14559624 E ? ^^ E Data differs at [7, 5]: E a> 1.9527721 E b> 1.9526997 E Data differs at [8, 5]: E a> -0.27985618 E b> -0.2801035 E Data differs at [9, 5]: E a> -0.09865601 E b> -0.09890488 E Data differs at [10, 5]: E a> -0.10656584 E b> -0.106814705 E Data differs at [11, 5]: E a> -0.13505593 E b> -0.13530499 E Data differs at [12, 5]: E a> -0.062794924 E b> -0.06299893 E Data differs at [13, 5]: E a> -0.2541457 E ? ^ ^ E b> -0.25435454 E ? ^^ ^ E Data differs at [14, 5]: E a> 0.044524774 E b> 0.04434136 E ... E 4155840 different pixels found (99.08% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [2033, 9]: E a> 0.05917287 E ? ^^ E b> 0.059172016 E ? ^^^ E Data differs at [42, 11]: E a> 0.00987731 E ? ^^ E b> 0.009877645 E ? ^^^ E Data differs at [651, 11]: E a> 0.0056100776 E b> 0.005610489 E Data differs at [1230, 11]: E a> 0.0056353775 E ? ^^^ E b> 0.0056358306 E ? + ^^ E Data differs at [629, 20]: E a> 0.016101867 E b> 0.016102336 E Data differs at [941, 20]: E a> 0.009797767 E b> 0.009798015 E Data differs at [552, 23]: E a> 0.031580392 E b> 0.031581085 E Data differs at [681, 33]: E a> 0.009312123 E ? -- E b> 0.009312377 E ? ++ E Data differs at [707, 35]: E a> 0.013522971 E b> 0.013523482 E Data differs at [849, 37]: E a> 0.032711904 E b> 0.032712955 E ... E 184 different pixels found (0.00% different). E E Extension HDU 6 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1220, 32]: E a> 0.017103717 E b> 0.017103262 E Data differs at [617, 40]: E a> 0.00077723514 E ? - - E b> 0.0007774231 E ? + E Data differs at [1193, 49]: E a> 0.0016725103 E ? --- E b> 0.0016723832 E ? +++ E Data differs at [1479, 56]: E a> 0.07173308 E b> 0.07173571 E Data differs at [388, 65]: E a> 0.0078134965 E ? ^^ - E b> 0.007813306 E ? ^^ E Data differs at [1987, 80]: E a> 0.014090647 E ? -- E b> 0.014090216 E ? ++ E Data differs at [689, 94]: E a> 0.013003772 E b> 0.013004473 E Data differs at [1061, 113]: E a> 0.00065081735 E b> 0.0006509779 E Data differs at [358, 117]: E a> 0.00048274992 E b> 0.00048286832 E Data differs at [1185, 134]: E a> 0.0008182664 E b> 0.00081848237 E ... E 178 different pixels found (0.00% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484e2df6a0>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[extract_2d] | 0.59 | |
|
run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...ct_2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_extract_2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'extract_2d' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_extract_2d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_extract_2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 47 E b: 49 E Extra keyword 'SRCDEC' in b: -30.40553434784723 E Extra keyword 'SRCRA' in b: 3.592040812067641 E Keyword SLTSTRT1 has different values: E a> 1389 E ? - E b> 1390 E ? + E Keyword SLTSTRT2 has different values: E a> 1113 E ? ^ E b> 1114 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.07601866 E b> 0.09491855 E Data differs at [2, 1]: E a> 0.091159254 E b> 0.020518458 E Data differs at [3, 1]: E a> 0.063286245 E b> 0.07317534 E Data differs at [4, 1]: E a> 0.05025898 E b> 0.07113351 E Data differs at [5, 1]: E a> 0.016595162 E b> 0.075566575 E Data differs at [6, 1]: E a> 0.07393524 E b> 0.061039086 E Data differs at [7, 1]: E a> 0.06604941 E b> 0.04007152 E Data differs at [8, 1]: E a> 0.006939598 E b> 0.0797044 E Data differs at [9, 1]: E a> 0.06425873 E b> 0.057408143 E Data differs at [10, 1]: E a> 0.06636904 E b> 0.07423474 E ... E 79333 different pixels found (99.99% different). E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0 E b> 4 E Data differs at [2, 1]: E a> 0 E b> 4 E Data differs at [5, 1]: E a> 0 E b> 4 E Data differs at [16, 1]: E a> 0 E b> 4 E Data differs at [17, 1]: E a> 0 E b> 4 E Data differs at [28, 1]: E a> 0 E b> 4 E Data differs at [32, 1]: E a> 4 E b> 0 E Data differs at [44, 1]: E a> 4 E b> 0 E Data differs at [46, 1]: E a> 0 E b> 16777221 E Data differs at [48, 1]: E a> 0 E b> 4 E ... E 13727 different pixels found (17.30% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0.021101505 E b> 0.022167083 E Data differs at [2, 1]: E a> 0.021743273 E b> 0.021564962 E Data differs at [3, 1]: E a> 0.022068132 E b> 0.022213832 E Data differs at [4, 1]: E a> 0.020673273 E b> 0.021578563 E Data differs at [5, 1]: E a> 0.019631913 E b> 0.022153186 E Data differs at [6, 1]: E a> 0.021232158 E b> 0.020933269 E Data differs at [7, 1]: E a> 0.020554062 E b> 0.020602789 E Data differs at [8, 1]: E a> 0.019950496 E b> 0.02096566 E Data differs at [9, 1]: E a> 0.021507863 E b> 0.021246059 E Data differs at [10, 1]: E a> 0.021294583 E b> 0.021775313 E ... E 79315 different pixels found (99.97% different). E E Extension HDU 4 (WAVELENGTH, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [2, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [3, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [4, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [5, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [6, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [7, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [8, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [9, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [10, 1]: E a> 1.9013734 E b> 1.8966796 E ... E 79339 different pixels found (100.00% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0.00044092129 E b> 0.0004695498 E Data differs at [2, 1]: E a> 0.0004693386 E b> 0.00045110442 E Data differs at [3, 1]: E a> 0.00046863322 E b> 0.00047672258 E Data differs at [4, 1]: E a> 0.0004243046 E b> 0.0004620551 E Data differs at [5, 1]: E a> 0.00038146426 E b> 0.00048392726 E Data differs at [6, 1]: E a> 0.0004464778 E b> 0.00043413675 E Data differs at [7, 1]: E a> 0.0004173837 E b> 0.00041826177 E Data differs at [8, 1]: E a> 0.00039347596 E b> 0.00043684588 E Data differs at [9, 1]: E a> 0.00045359458 E b> 0.00044724232 E Data differs at [10, 1]: E a> 0.00044899594 E b> 0.00046903442 E ... E 79171 different pixels found (99.79% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 4.2842657e-06 E b> 2.1721587e-05 E Data differs at [2, 1]: E a> 3.3317215e-06 E b> 1.3938283e-05 E Data differs at [3, 1]: E a> 1.8322411e-05 E b> 1.6667349e-05 E Data differs at [4, 1]: E a> 3.0500287e-06 E b> 3.5189762e-06 E Data differs at [5, 1]: E a> 3.9447364e-06 E b> 6.7672145e-06 E Data differs at [6, 1]: E a> 4.2621227e-06 E b> 4.021001e-06 E Data differs at [7, 1]: E a> 5.034949e-06 E b> 6.1944747e-06 E Data differs at [8, 1]: E a> 4.545765e-06 E b> 2.6388068e-06 E Data differs at [9, 1]: E a> 8.945237e-06 E b> 4.1124395e-06 E Data differs at [10, 1]: E a> 4.4113017e-06 E b> 5.064231e-06 E ... E 75727 different pixels found (95.45% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [17, 1]: E a> 4.913979e-08 E b> 1.9260558e-07 E Data differs at [19, 1]: E a> 1.4055821e-07 E b> 1.3462205e-08 E Data differs at [20, 1]: E a> 7.747428e-09 E b> 1.1106848e-07 E Data differs at [21, 1]: E a> 1.4606553e-07 E b> 4.5921e-08 E Data differs at [45, 1]: E a> 1.017291e-08 E b> 1.1921217e-07 E Data differs at [47, 1]: E a> 9.3021155e-09 E b> 1.0938525e-07 E Data differs at [48, 1]: E a> 3.762465e-08 E b> 1.4567745e-07 E Data differs at [51, 1]: E a> 1.82091e-07 E b> 5.269996e-09 E Data differs at [55, 1]: E a> 1.7381811e-07 E b> 1.7002574e-08 E Data differs at [61, 1]: E a> 1.0950979e-07 E b> 2.4832877e-07 E ... E 50000 different pixels found (63.02% different). E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.40018067148927 E Extra keyword 'SRCRA' in b: 3.586356414491374 E Keyword SLTSTRT1 has different values: E a> 1032 E ? ^ E b> 1033 E ? ^ E Keyword SLTSTRT2 has different values: E a> 1314 E ? ^ E b> 1315 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.19990797 E b> 0.18290745 E Data differs at [2, 1]: E a> 0.23067056 E b> 0.2477534 E Data differs at [3, 1]: E a> 0.23131803 E b> 0.2964172 E Data differs at [4, 1]: E a> 0.20412807 E b> 0.2580659 E Data differs at [5, 1]: E a> 0.2401229 E b> 0.2511261 E Data differs at [6, 1]: E a> 0.23832908 E b> 0.19198704 E Data differs at [7, 1]: E a> 0.22189732 E b> 0.17562482 E Data differs at [8, 1]: E a> 0.14300282 E b> 0.17584698 E Data differs at [9, 1]: E a> 0.15427624 E b> 0.18087307 E Data differs at [10, 1]: E a> 0.20676768 E b> 0.12289692 E ... E 56770 different pixels found (100.00% different). E E Extension HDU 9 (DQ, 2): E E Data contains differences: E Data differs at [2, 1]: E a> 4 E b> 0 E Data differs at [3, 1]: E a> 4 E b> 0 E Data differs at [4, 1]: E a> 4 E b> 0 E Data differs at [12, 1]: E a> 0 E b> 4 E Data differs at [13, 1]: E a> 0 E b> 4 E Data differs at [15, 1]: E a> 4 E b> 8388613 E Data differs at [18, 1]: E a> 16779265 E b> 0 E Data differs at [20, 1]: E a> 0 E b> 35914753 E Data differs at [46, 1]: E a> 4 E b> 0 E Data differs at [47, 1]: E a> 4 E b> 0 E ... E 9676 different pixels found (17.04% different). E E Extension HDU 10 (ERR, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 0.0224017 E b> 0.023020292 E Data differs at [2, 1]: E a> 0.024187082 E b> 0.023029739 E Data differs at [3, 1]: E a> 0.02411214 E b> 0.023737837 E Data differs at [4, 1]: E a> 0.023702415 E b> 0.023137512 E Data differs at [5, 1]: E a> 0.023448238 E b> 0.023216644 E Data differs at [6, 1]: E a> 0.023274248 E b> 0.02180982 E Data differs at [7, 1]: E a> 0.023105526 E b> 0.022139112 E Data differs at [8, 1]: E a> 0.021588627 E b> 0.021680543 E Data differs at [9, 1]: E a> 0.020922955 E b> 0.02214974 E Data differs at [10, 1]: E a> 0.0227876 E b> 0.021650355 E ... E 56758 different pixels found (99.98% different). E E Extension HDU 11 (WAVELENGTH, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [2, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [3, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [4, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [5, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [6, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [7, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [8, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [9, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [10, 1]: E a> 1.7154493 E b> 1.7107556 E ... E 56772 different pixels found (100.00% different). E E Extension HDU 12 (VAR_POISSON, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 0.0004967198 E b> 0.0005257822 E Data differs at [2, 1]: E a> 0.0005659332 E b> 0.0005248566 E Data differs at [3, 1]: E a> 0.0005600677 E b> 0.0005520634 E Data differs at [4, 1]: E a> 0.00052954094 E b> 0.0005299283 E Data differs at [5, 1]: E a> 0.00054649735 E b> 0.0005338184 E Data differs at [6, 1]: E a> 0.00053486385 E b> 0.00047162746 E Data differs at [7, 1]: E a> 0.0005210768 E b> 0.00048540108 E Data differs at [8, 1]: E a> 0.00046242232 E b> 0.00046590794 E Data differs at [9, 1]: E a> 0.00043405924 E b> 0.00048541123 E Data differs at [10, 1]: E a> 0.0005143815 E b> 0.00046457764 E ... E 56658 different pixels found (99.80% different). E E Extension HDU 13 (VAR_RNOISE, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 4.665698e-06 E b> 3.7364505e-06 E Data differs at [2, 1]: E a> 1.8443272e-05 E b> 4.801762e-06 E Data differs at [3, 1]: E a> 2.0702795e-05 E b> 1.0406416e-05 E Data differs at [4, 1]: E a> 3.1765037e-05 E b> 4.660997e-06 E Data differs at [5, 1]: E a> 2.6672885e-06 E b> 4.456551e-06 E Data differs at [6, 1]: E a> 6.1673345e-06 E b> 3.636675e-06 E Data differs at [7, 1]: E a> 1.2237247e-05 E b> 4.381598e-06 E Data differs at [8, 1]: E a> 3.4235275e-06 E b> 3.815099e-06 E Data differs at [9, 1]: E a> 3.4832394e-06 E b> 4.8139077e-06 E Data differs at [10, 1]: E a> 4.3654472e-06 E b> 3.9951915e-06 E ... E 54296 different pixels found (95.64% different). E E Extension HDU 14 (VAR_FLAT, 2): E E Data contains differences: E Data differs at [3, 1]: E a> 6.248351e-07 E b> 1.0150636e-06 E Data differs at [4, 1]: E a> 4.9849564e-07 E b> 7.5511593e-07 E Data differs at [6, 1]: E a> 6.594963e-07 E b> 4.0410734e-07 E Data differs at [7, 1]: E a> 5.5132745e-07 E b> 3.5759572e-07 E Data differs at [8, 1]: E a> 2.2292639e-07 E ? ^ ^ ^ E b> 3.2294636e-07 E ? ^ ^ ^ E Data differs at [9, 1]: E a> 2.2759919e-07 E b> 3.858297e-07 E Data differs at [10, 1]: E a> 5.277661e-07 E b> 1.6503091e-07 E Data differs at [11, 1]: E a> 4.2515765e-07 E b> 6.758743e-07 E Data differs at [12, 1]: E a> 4.9715146e-07 E b> 7.964099e-07 E Data differs at [13, 1]: E a> 6.500649e-07 E b> 4.54274e-07 E ... E 42339 different pixels found (74.58% different). E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.39411309485647 E Extra keyword 'SRCRA' in b: 3.585624631060788 E Keyword NAXIS2 has different values: E a> 321 E b> 322 E Keyword SLTSIZE1 has different values: E a> 181 E b> 183 E Keyword SLTSIZE2 has different values: E a> 321 E b> 322 E Keyword SLTSTRT2 has different values: E a> 1177 E ? ^ E b> 1178 E ? ^ E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 16 (DQ, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 17 (ERR, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 18 (WAVELENGTH, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 19 (VAR_POISSON, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 20 (VAR_RNOISE, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 21 (VAR_FLAT, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.39163095906152 E Extra keyword 'SRCRA' in b: 3.59464814053007 E Keyword NAXIS2 has different values: E a> 228 E b> 229 E Keyword SLTSIZE1 has different values: E a> 197 E b> 199 E Keyword SLTSIZE2 has different values: E a> 228 E b> 229 E Keyword SLTSTRT2 has different values: E a> 801 E b> 802 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 29 (SCI, 5): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.39602892937478 E Extra keyword 'SRCRA' in b: 3.58789771169632 E Keyword NAXIS2 has different values: E a> 203 E b> 205 E Keyword SLTSIZE2 has different values: E a> 203 E b> 205 E Keyword SLTSTRT1 has different values: E a> 857 E b> 858 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 30 (DQ, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 31 (ERR, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 32 (WAVELENGTH, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 33 (VAR_POISSON, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 34 (VAR_RNOISE, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 35 (VAR_FLAT, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 36 (SCI, 6): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSIZE1 has different values: E a> 133 E b> 134 E Keyword SLTSTRT2 has different values: E a> 217 E b> 218 E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 37 (DQ, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 38 (ERR, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 39 (WAVELENGTH, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 40 (VAR_POISSON, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 41 (VAR_RNOISE, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 42 (VAR_FLAT, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 43 (SCI, 7): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.40926138863649 E Extra keyword 'SRCRA' in b: 3.579587921874186 E Keyword NAXIS2 has different values: E a> 209 E b> 211 E Keyword SLTSIZE1 has different values: E a> 117 E b> 119 E Keyword SLTSIZE2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 44 (DQ, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 45 (ERR, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 46 (WAVELENGTH, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 47 (VAR_POISSON, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 48 (VAR_RNOISE, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 49 (VAR_FLAT, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 50 (SCI, 8): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.38980139908971 E Extra keyword 'SRCRA' in b: 3.600004699000835 E Keyword NAXIS2 has different values: E a> 236 E b> 237 E Keyword SLTSIZE1 has different values: E a> 10 E b> 11 E Keyword SLTSIZE2 has different values: E a> 236 E b> 237 E Keyword SLTSTRT2 has different values: E a> 521 E b> 522 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 51 (DQ, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 52 (ERR, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 53 (WAVELENGTH, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 54 (VAR_POISSON, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 55 (VAR_RNOISE, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 56 (VAR_FLAT, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 57 (SCI, 9): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.3860237133523 E Extra keyword 'SRCRA' in b: 3.569829752935783 E Keyword SLTSTRT1 has different values: E a> 25 E b> 26 E Keyword SLTSTRT2 has different values: E a> 1791 E ? ^ E b> 1792 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.018300496 E b> 0.04914401 E Data differs at [2, 1]: E a> 0.07292115 E b> 0.03709803 E Data differs at [3, 1]: E a> 0.006714215 E b> 0.045797363 E Data differs at [4, 1]: E a> 0.057412837 E b> 0.030214189 E Data differs at [5, 1]: E a> 0.05260742 E b> 0.002094747 E Data differs at [6, 1]: E a> 0.013841207 E b> 0.07073075 E Data differs at [7, 1]: E a> 0.06833076 E b> 0.07115308 E Data differs at [8, 1]: E a> 0.04218341 E b> 0.047660735 E Data differs at [9, 1]: E a> 0.027864996 E b> 0.042478852 E Data differs at [10, 1]: E a> 0.059238214 E b> 0.044986747 E ... E 55174 different pixels found (100.00% different). E E Extension HDU 58 (DQ, 9): E E Data contains differences: E Data differs at [15, 1]: E a> 0 E b> 4 E Data differs at [16, 1]: E a> 0 E b> 4 E Data differs at [20, 1]: E a> 0 E b> 4 E Data differs at [21, 1]: E a> 0 E b> 4 E Data differs at [28, 1]: E a> 0 E b> 4 E Data differs at [32, 1]: E a> 4 E b> 0 E Data differs at [67, 1]: E a> 0 E b> 4 E Data differs at [68, 1]: E a> 0 E b> 4 E Data differs at [70, 1]: E a> 4 E b> 0 E Data differs at [71, 1]: E a> 4 E b> 0 E ... E 8836 different pixels found (16.01% different). E E Extension HDU 59 (ERR, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 0.01982531 E b> 0.019883042 E Data differs at [2, 1]: E a> 0.020379202 E b> 0.020768518 E Data differs at [3, 1]: E a> 0.01980809 E b> 0.0201421 E Data differs at [4, 1]: E a> 0.020428026 E b> 0.019892808 E Data differs at [5, 1]: E a> 0.020475939 E b> 0.019547174 E Data differs at [6, 1]: E a> 0.019923387 E b> 0.02070914 E Data differs at [7, 1]: E a> 0.020515747 E b> 0.020945193 E Data differs at [8, 1]: E a> 0.01992046 E b> 0.02074254 E Data differs at [9, 1]: E a> 0.0195891 E b> 0.020285513 E Data differs at [10, 1]: E a> 0.020573577 E b> 0.019876871 E ... E 55167 different pixels found (99.98% different). E E Extension HDU 60 (WAVELENGTH, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [2, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [3, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [4, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [5, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [6, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [7, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [8, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [9, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [10, 1]: E a> 1.7922435 E b> 1.7875497 E ... E 55176 different pixels found (100.00% different). E E Extension HDU 61 (VAR_POISSON, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 0.00038881451 E b> 0.00039086334 E Data differs at [2, 1]: E a> 0.0004118398 E b> 0.00042644018 E Data differs at [3, 1]: E a> 0.00038849132 E b> 0.00040312088 E Data differs at [4, 1]: E a> 0.00041337454 E b> 0.00039108226 E Data differs at [5, 1]: E a> 0.00041502528 E b> 0.0003768711 E Data differs at [6, 1]: E a> 0.00039139003 E b> 0.0004251499 E Data differs at [7, 1]: E a> 0.00041772542 E b> 0.00043529167 E Data differs at [8, 1]: E a> 0.00039268463 E b> 0.00042584812 E Data differs at [9, 1]: E a> 0.00037906787 E b> 0.00040800878 E Data differs at [10, 1]: E a> 0.00041859446 E b> 0.0003918399 E ... E 55032 different pixels found (99.74% different). E E Extension HDU 62 (VAR_RNOISE, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 4.224553e-06 E b> 4.444852e-06 E Data differs at [2, 1]: E a> 3.4088628e-06 E b> 4.874177e-06 E Data differs at [3, 1]: E a> 3.868535e-06 E b> 2.5592135e-06 E Data differs at [4, 1]: E a> 3.8915937e-06 E b> 4.6309597e-06 E Data differs at [5, 1]: E a> 4.2061934e-06 E b> 5.220881e-06 E Data differs at [6, 1]: E a> 5.549274e-06 E b> 3.6613828e-06 E Data differs at [7, 1]: E a> 3.116495e-06 E b> 3.3503884e-06 E Data differs at [8, 1]: E a> 4.1193985e-06 E b> 4.377403e-06 E Data differs at [9, 1]: E a> 4.656189e-06 E b> 3.4719258e-06 E Data differs at [10, 1]: E a> 4.6361974e-06 E b> 3.2270991e-06 E ... E 52507 different pixels found (95.16% different). E E Extension HDU 63 (VAR_FLAT, 9): E E Data contains differences: E Data differs at [113, 1]: E a> 1.4214218e-07 E b> 1.9844174e-08 E Data differs at [119, 1]: E a> 2.5894991e-08 E b> 1.5745938e-07 E Data differs at [122, 1]: E a> 2.652957e-07 E b> 1.3733384e-07 E Data differs at [123, 1]: E a> 3.9400356e-07 E b> 1.0309822e-07 E Data differs at [125, 1]: E a> 4.227829e-07 E ? ^ - E b> 3.2127582e-07 E ? ^ + + E Data differs at [127, 1]: E a> 5.5986595e-07 E b> 6.782127e-07 E Data differs at [128, 1]: E a> 7.1790396e-07 E b> 1.0329828e-06 E Data differs at [130, 1]: E a> 1.4445675e-06 E b> 9.4824804e-07 E Data differs at [131, 1]: E a> 1.9395357e-06 E b> 0.0 E Data differs at [132, 1]: E a> 2.1240514e-06 E b> 1.7619503e-06 E ... E 10858 different pixels found (19.68% different). E E Extension HDU 64 (SCI, 10): E E Headers contain differences: E Headers have different number of cards: E a: 23 E b: 25 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 65 (DQ, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 66 (ERR, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 67 (WAVELENGTH, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 68 (VAR_POISSON, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 69 (VAR_RNOISE, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 70 (VAR_FLAT, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f490555a280>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[flat_field] | 1.88 | |
|
run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...field.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_flat_field.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'flat_field' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_flat_field.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_flat_field.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [5, 5]: E a> 0.82082546 E b> 0.82067204 E Data differs at [6, 5]: E a> 0.089759365 E b> 0.08975724 E Data differs at [7, 5]: E a> 1.203846 E b> 1.2038013 E Data differs at [8, 5]: E a> -0.17252588 E b> -0.17267835 E Data differs at [9, 5]: E a> -0.060819507 E b> -0.06097293 E Data differs at [10, 5]: E a> -0.06569576 E b> -0.065849185 E Data differs at [11, 5]: E a> -0.083259344 E b> -0.083412886 E Data differs at [12, 5]: E a> -0.038711846 E b> -0.03883761 E Data differs at [13, 5]: E a> -0.15667588 E b> -0.15680462 E Data differs at [14, 5]: E a> 0.027448654 E b> 0.027335584 E ... E 4155773 different pixels found (99.08% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [2033, 9]: E a> 0.036478918 E ? ^^ E b> 0.036478393 E ? + ^ E Data differs at [42, 11]: E a> 0.006089169 E b> 0.0060893754 E Data differs at [651, 11]: E a> 0.0034585034 E ? ^^^ E b> 0.0034587567 E ? + ^^ E Data differs at [1230, 11]: E a> 0.0034741005 E b> 0.0034743794 E Data differs at [629, 20]: E a> 0.009926487 E ? -- E b> 0.0099267755 E ? +++ E Data differs at [552, 23]: E a> 0.019468695 E ? -- E b> 0.019469125 E ? ++ E Data differs at [707, 35]: E a> 0.008336648 E ? ^^ E b> 0.008336963 E ? + ^ E Data differs at [849, 37]: E a> 0.02016625 E ? ^^ E b> 0.020166898 E ? ^^^ E Data differs at [1483, 42]: E a> 0.022238541 E ? ^ -- E b> 0.02223905 E ? ^^ E Data differs at [271, 45]: E a> 0.0053882445 E ? - ^^ E b> 0.005388409 E ? ^^ E ... E 160 different pixels found (0.00% different). E E Extension HDU 6 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1220, 32]: E a> 0.006500237 E b> 0.006500064 E Data differs at [1479, 56]: E a> 0.027262028 E ? ^ ^ E b> 0.027263029 E ? ^ ^ E Data differs at [1987, 80]: E a> 0.0053551253 E b> 0.0053549614 E Data differs at [689, 94]: E a> 0.0049420604 E b> 0.004942327 E Data differs at [680, 168]: E a> 0.0013128986 E ? - ^^ E b> 0.0013130297 E ? ++ ^ E Data differs at [1517, 173]: E a> 0.014913986 E ? ^^ E b> 0.014913297 E ? + ^ E Data differs at [623, 328]: E a> 0.0016168883 E ? --- E b> 0.0016167508 E ? +++ E Data differs at [1799, 351]: E a> 0.0008528466 E ? ^^ E b> 0.0008527066 E ? ^^ E Data differs at [1089, 368]: E a> 0.03408712 E b> 0.034086086 E Data differs at [272, 417]: E a> 0.07086145 E ? ^^ E b> 0.07086056 E ? ^ + E ... E 46 different pixels found (0.00% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484d0895b0>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[photom] | 0.48 | |
|
run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...is_photom.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_photom.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'photom' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_photom.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_photom.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 54 E b: 56 E Extra keyword 'SRCDEC' in b: -30.40553434784723 E Extra keyword 'SRCRA' in b: 3.592040812067641 E Keyword SLTSTRT1 has different values: E a> 1389 E ? - E b> 1390 E ? + E Keyword SLTSTRT2 has different values: E a> 1113 E ? ^ E b> 1114 E ? ^ E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 1363.4772 E Data differs at [2, 125]: E a> 0.0 E b> 1314.6934 E Data differs at [3, 125]: E a> 0.0 E b> 1513.2789 E Data differs at [4, 125]: E a> 0.0 E b> 1438.8994 E Data differs at [5, 125]: E a> 0.0 E b> 1932.6174 E Data differs at [6, 125]: E a> 0.0 E b> 1949.8593 E Data differs at [7, 125]: E a> 0.0 E b> 2132.382 E Data differs at [8, 125]: E a> 0.0 E b> 1579.2274 E Data differs at [9, 125]: E a> 0.0 E b> 1932.2921 E Data differs at [10, 125]: E a> 0.0 E b> 1362.5513 E ... E 15249 different pixels found (19.22% different). E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1 E b> 5 E Data differs at [2, 1]: E a> 1 E b> 5 E Data differs at [5, 1]: E a> 1 E b> 5 E Data differs at [16, 1]: E a> 1 E b> 5 E Data differs at [17, 1]: E a> 1 E b> 5 E Data differs at [28, 1]: E a> 1 E b> 5 E Data differs at [32, 1]: E a> 5 E b> 1 E Data differs at [44, 1]: E a> 5 E b> 1 E Data differs at [46, 1]: E a> 1 E b> 16777221 E Data differs at [48, 1]: E a> 1 E b> 5 E ... E 13566 different pixels found (17.10% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 191.5967 E Data differs at [2, 125]: E a> 0.0 E b> 186.99792 E Data differs at [3, 125]: E a> 0.0 E b> 190.20242 E Data differs at [4, 125]: E a> 0.0 E b> 188.07532 E Data differs at [5, 125]: E a> 0.0 E b> 192.07884 E Data differs at [6, 125]: E a> 0.0 E b> 199.28291 E Data differs at [7, 125]: E a> 0.0 E b> 197.129 E Data differs at [8, 125]: E a> 0.0 E b> 191.76932 E Data differs at [9, 125]: E a> 0.0 E b> 192.68011 E Data differs at [10, 125]: E a> 0.0 E b> 192.26921 E ... E 15246 different pixels found (19.22% different). E E Extension HDU 4 (WAVELENGTH, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [2, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [3, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [4, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [5, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [6, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [7, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [8, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [9, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [10, 1]: E a> 1.9013734 E b> 1.8966796 E ... E 79339 different pixels found (100.00% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 36424.82 E Data differs at [2, 125]: E a> 0.0 E b> 34599.67 E Data differs at [3, 125]: E a> 0.0 E b> 35775.6 E Data differs at [4, 125]: E a> 0.0 E b> 35013.43 E Data differs at [5, 125]: E a> 0.0 E b> 36640.895 E Data differs at [6, 125]: E a> 0.0 E b> 39414.37 E Data differs at [7, 125]: E a> 0.0 E b> 38401.395 E Data differs at [8, 125]: E a> 0.0 E b> 36373.76 E Data differs at [9, 125]: E a> 0.0 E b> 36752.85 E Data differs at [10, 125]: E a> 0.0 E b> 36637.6 E ... E 15248 different pixels found (19.22% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 261.33878 E Data differs at [2, 125]: E a> 0.0 E b> 348.2399 E Data differs at [3, 125]: E a> 0.0 E b> 372.7315 E Data differs at [4, 125]: E a> 0.0 E b> 334.8433 E Data differs at [5, 125]: E a> 0.0 E b> 208.7587 E Data differs at [6, 125]: E a> 0.0 E b> 254.74019 E Data differs at [7, 125]: E a> 0.0 E b> 404.5371 E Data differs at [8, 125]: E a> 0.0 E b> 372.12772 E Data differs at [9, 125]: E a> 0.0 E b> 327.5682 E Data differs at [10, 125]: E a> 0.0 E b> 307.2687 E ... E 15247 different pixels found (19.22% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1, 125]: E a> 0.0 E b> 23.128403 E Data differs at [2, 125]: E a> 0.0 E b> 20.311348 E Data differs at [3, 125]: E a> 0.0 E b> 28.629303 E Data differs at [4, 125]: E a> 0.0 E b> 24.053085 E Data differs at [5, 125]: E a> 0.0 E b> 44.628468 E Data differs at [6, 125]: E a> 0.0 E b> 44.564407 E Data differs at [7, 125]: E a> 0.0 E b> 53.908096 E Data differs at [8, 125]: E a> 0.0 E b> 29.58187 E Data differs at [9, 125]: E a> 0.0 E b> 45.20958 E Data differs at [10, 125]: E a> 0.0 E b> 22.578938 E ... E 15245 different pixels found (19.22% different). E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.40018067148927 E Extra keyword 'SRCRA' in b: 3.586356414491374 E Keyword SLTSTRT1 has different values: E a> 1032 E ? ^ E b> 1033 E ? ^ E Keyword SLTSTRT2 has different values: E a> 1314 E ? ^ E b> 1315 E ? ^ E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 3985.8796 E Data differs at [2, 85]: E a> 0.0 E b> 4118.5845 E Data differs at [3, 85]: E a> 0.0 E b> -58.99588 E Data differs at [4, 85]: E a> 0.0 E b> 4555.2866 E Data differs at [5, 85]: E a> 0.0 E b> 5155.0547 E Data differs at [6, 85]: E a> 0.0 E b> 4215.951 E Data differs at [7, 85]: E a> 0.0 E b> 4324.001 E Data differs at [8, 85]: E a> 0.0 E b> 4124.1924 E Data differs at [9, 85]: E a> 0.0 E b> 3861.4543 E Data differs at [10, 85]: E a> 0.0 E b> 4730.775 E ... E 15957 different pixels found (28.11% different). E E Extension HDU 9 (DQ, 2): E E Data contains differences: E Data differs at [2, 1]: E a> 5 E b> 1 E Data differs at [3, 1]: E a> 5 E b> 1 E Data differs at [4, 1]: E a> 5 E b> 1 E Data differs at [12, 1]: E a> 1 E b> 5 E Data differs at [13, 1]: E a> 1 E b> 5 E Data differs at [15, 1]: E a> 5 E b> 8388613 E Data differs at [18, 1]: E a> 16779265 E b> 1 E Data differs at [20, 1]: E a> 1 E b> 35914753 E Data differs at [46, 1]: E a> 5 E b> 1 E Data differs at [47, 1]: E a> 5 E b> 1 E ... E 9663 different pixels found (17.02% different). E E Extension HDU 10 (ERR, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 300.3294 E Data differs at [2, 85]: E a> 0.0 E b> 280.55493 E Data differs at [3, 85]: E a> 0.0 E b> 85.338104 E Data differs at [4, 85]: E a> 0.0 E b> 275.2996 E Data differs at [5, 85]: E a> 0.0 E b> 305.31372 E Data differs at [6, 85]: E a> 0.0 E b> 287.1998 E Data differs at [7, 85]: E a> 0.0 E b> 280.49844 E Data differs at [8, 85]: E a> 0.0 E b> 278.29352 E Data differs at [9, 85]: E a> 0.0 E b> 285.17935 E Data differs at [10, 85]: E a> 0.0 E b> 288.2807 E ... E 15958 different pixels found (28.11% different). E E Extension HDU 11 (WAVELENGTH, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [2, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [3, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [4, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [5, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [6, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [7, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [8, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [9, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [10, 1]: E a> 1.7154493 E b> 1.7107556 E ... E 56772 different pixels found (100.00% different). E E Extension HDU 12 (VAR_POISSON, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 88679.945 E Data differs at [2, 85]: E a> 0.0 E b> 78039.22 E Data differs at [3, 85]: E a> 0.0 E b> 2036.2072 E Data differs at [4, 85]: E a> 0.0 E b> 75026.336 E Data differs at [5, 85]: E a> 0.0 E b> 92242.55 E Data differs at [6, 85]: E a> 0.0 E b> 81677.06 E Data differs at [7, 85]: E a> 0.0 E b> 77789.305 E Data differs at [8, 85]: E a> 0.0 E b> 76522.234 E Data differs at [9, 85]: E a> 0.0 E b> 80232.84 E Data differs at [10, 85]: E a> 0.0 E b> 82342.11 E ... E 15950 different pixels found (28.09% different). E E Extension HDU 13 (VAR_RNOISE, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 1324.0547 E Data differs at [2, 85]: E a> 0.0 E b> 479.76517 E Data differs at [3, 85]: E a> 0.0 E b> 5246.3857 E Data differs at [4, 85]: E a> 0.0 E b> 524.931 E Data differs at [5, 85]: E a> 0.0 E b> 642.7656 E Data differs at [6, 85]: E a> 0.0 E b> 598.9909 E Data differs at [7, 85]: E a> 0.0 E b> 667.98175 E Data differs at [8, 85]: E a> 0.0 E b> 725.91876 E Data differs at [9, 85]: E a> 0.0 E b> 904.42816 E Data differs at [10, 85]: E a> 0.0 E b> 503.98715 E ... E 15959 different pixels found (28.11% different). E E Extension HDU 14 (VAR_FLAT, 2): E E Data contains differences: E Data differs at [1, 85]: E a> 0.0 E b> 193.7494 E Data differs at [2, 85]: E a> 0.0 E b> 192.08748 E Data differs at [4, 85]: E a> 0.0 E b> 238.59854 E Data differs at [5, 85]: E a> 0.0 E b> 331.16757 E Data differs at [6, 85]: E a> 0.0 E b> 207.66754 E Data differs at [7, 85]: E a> 0.0 E b> 222.09827 E Data differs at [8, 85]: E a> 0.0 E b> 199.12457 E Data differs at [9, 85]: E a> 0.0 E b> 189.98973 E Data differs at [10, 85]: E a> 0.0 E b> 259.66467 E Data differs at [11, 85]: E a> 0.0 E b> 166.92542 E ... E 15957 different pixels found (28.11% different). E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.39411309485647 E Extra keyword 'SRCRA' in b: 3.585624631060788 E Keyword NAXIS2 has different values: E a> 321 E b> 322 E Keyword SLTSIZE1 has different values: E a> 181 E b> 183 E Keyword SLTSIZE2 has different values: E a> 321 E b> 322 E Keyword SLTSTRT2 has different values: E a> 1177 E ? ^ E b> 1178 E ? ^ E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 16 (DQ, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 17 (ERR, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 18 (WAVELENGTH, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 19 (VAR_POISSON, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 20 (VAR_RNOISE, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 21 (VAR_FLAT, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.39163095906152 E Extra keyword 'SRCRA' in b: 3.59464814053007 E Keyword NAXIS2 has different values: E a> 228 E b> 229 E Keyword SLTSIZE1 has different values: E a> 197 E b> 199 E Keyword SLTSIZE2 has different values: E a> 228 E b> 229 E Keyword SLTSTRT2 has different values: E a> 801 E b> 802 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 29 (SCI, 5): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.39602892937478 E Extra keyword 'SRCRA' in b: 3.58789771169632 E Keyword NAXIS2 has different values: E a> 203 E b> 205 E Keyword SLTSIZE2 has different values: E a> 203 E b> 205 E Keyword SLTSTRT1 has different values: E a> 857 E b> 858 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 30 (DQ, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 31 (ERR, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 32 (WAVELENGTH, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 33 (VAR_POISSON, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 34 (VAR_RNOISE, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 35 (VAR_FLAT, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 36 (SCI, 6): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSIZE1 has different values: E a> 133 E b> 134 E Keyword SLTSTRT2 has different values: E a> 217 E b> 218 E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 37 (DQ, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 38 (ERR, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 39 (WAVELENGTH, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 40 (VAR_POISSON, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 41 (VAR_RNOISE, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 42 (VAR_FLAT, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 43 (SCI, 7): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.40926138863649 E Extra keyword 'SRCRA' in b: 3.579587921874186 E Keyword NAXIS2 has different values: E a> 209 E b> 211 E Keyword SLTSIZE1 has different values: E a> 117 E b> 119 E Keyword SLTSIZE2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 44 (DQ, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 45 (ERR, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 46 (WAVELENGTH, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 47 (VAR_POISSON, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 48 (VAR_RNOISE, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 49 (VAR_FLAT, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 50 (SCI, 8): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.38980139908971 E Extra keyword 'SRCRA' in b: 3.600004699000835 E Keyword NAXIS2 has different values: E a> 236 E b> 237 E Keyword SLTSIZE1 has different values: E a> 10 E b> 11 E Keyword SLTSIZE2 has different values: E a> 236 E b> 237 E Keyword SLTSTRT2 has different values: E a> 521 E b> 522 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 51 (DQ, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 52 (ERR, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 53 (WAVELENGTH, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 54 (VAR_POISSON, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 55 (VAR_RNOISE, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 56 (VAR_FLAT, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 57 (SCI, 9): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.3860237133523 E Extra keyword 'SRCRA' in b: 3.569829752935783 E Keyword SLTSTRT1 has different values: E a> 25 E b> 26 E Keyword SLTSTRT2 has different values: E a> 1791 E ? ^ E b> 1792 E ? ^ E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 566.4476 E Data differs at [2, 102]: E a> 0.0 E b> 338.4689 E Data differs at [3, 102]: E a> 0.0 E b> 159.03731 E Data differs at [4, 102]: E a> 0.0 E b> 145.91112 E Data differs at [5, 102]: E a> 0.0 E b> 305.26697 E Data differs at [6, 102]: E a> 0.0 E b> 195.4081 E Data differs at [7, 102]: E a> 0.0 E b> 491.52173 E Data differs at [8, 102]: E a> 0.0 E b> 190.26485 E Data differs at [9, 102]: E a> 0.0 E b> 597.8491 E Data differs at [10, 102]: E a> 0.0 E b> 1145.7515 E ... E 15732 different pixels found (28.51% different). E E Extension HDU 58 (DQ, 9): E E Data contains differences: E Data differs at [15, 1]: E a> 1 E b> 5 E Data differs at [16, 1]: E a> 1 E b> 5 E Data differs at [20, 1]: E a> 1 E b> 5 E Data differs at [21, 1]: E a> 1 E b> 5 E Data differs at [28, 1]: E a> 1 E b> 5 E Data differs at [32, 1]: E a> 5 E b> 1 E Data differs at [67, 1]: E a> 1 E b> 5 E Data differs at [68, 1]: E a> 1 E b> 5 E Data differs at [70, 1]: E a> 5 E b> 1 E Data differs at [71, 1]: E a> 5 E b> 1 E ... E 8873 different pixels found (16.08% different). E E Extension HDU 59 (ERR, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 152.93675 E Data differs at [2, 102]: E a> 0.0 E b> 148.28142 E Data differs at [3, 102]: E a> 0.0 E b> 146.94443 E Data differs at [4, 102]: E a> 0.0 E b> 134.35672 E Data differs at [5, 102]: E a> 0.0 E b> 141.13506 E Data differs at [6, 102]: E a> 0.0 E b> 136.90057 E Data differs at [7, 102]: E a> 0.0 E b> 144.3461 E Data differs at [8, 102]: E a> 0.0 E b> 134.80638 E Data differs at [9, 102]: E a> 0.0 E b> 141.16875 E Data differs at [10, 102]: E a> 0.0 E b> 148.1953 E ... E 15729 different pixels found (28.51% different). E E Extension HDU 60 (WAVELENGTH, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [2, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [3, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [4, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [5, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [6, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [7, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [8, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [9, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [10, 1]: E a> 1.7922435 E b> 1.7875497 E ... E 55176 different pixels found (100.00% different). E E Extension HDU 61 (VAR_POISSON, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 22543.514 E Data differs at [2, 102]: E a> 0.0 E b> 21227.89 E Data differs at [3, 102]: E a> 0.0 E b> 20556.422 E Data differs at [4, 102]: E a> 0.0 E b> 17923.559 E Data differs at [5, 102]: E a> 0.0 E b> 19693.129 E Data differs at [6, 102]: E a> 0.0 E b> 18591.36 E Data differs at [7, 102]: E a> 0.0 E b> 20624.27 E Data differs at [8, 102]: E a> 0.0 E b> 17996.79 E Data differs at [9, 102]: E a> 0.0 E b> 19779.443 E Data differs at [10, 102]: E a> 0.0 E b> 21791.436 E ... E 15731 different pixels found (28.51% different). E E Extension HDU 62 (VAR_RNOISE, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 842.26373 E Data differs at [2, 102]: E a> 0.0 E b> 758.1521 E Data differs at [3, 102]: E a> 0.0 E b> 1035.9584 E Data differs at [4, 102]: E a> 0.0 E b> 127.92964 E Data differs at [5, 102]: E a> 0.0 E b> 224.8679 E Data differs at [6, 102]: E a> 0.0 E b> 149.96489 E Data differs at [7, 102]: E a> 0.0 E b> 208.6493 E Data differs at [8, 102]: E a> 0.0 E b> 175.55556 E Data differs at [9, 102]: E a> 0.0 E b> 145.00322 E Data differs at [10, 102]: E a> 0.0 E b> 154.8307 E ... E 15730 different pixels found (28.51% different). E E Extension HDU 63 (VAR_FLAT, 9): E E Data contains differences: E Data differs at [1, 102]: E a> 0.0 E b> 3.8734808 E Data differs at [2, 102]: E a> 0.0 E b> 1.3375401 E Data differs at [3, 102]: E a> 0.0 E b> 0.28612608 E Data differs at [4, 102]: E a> 0.0 E b> 0.23972379 E Data differs at [5, 102]: E a> 0.0 E b> 1.1103776 E Data differs at [6, 102]: E a> 0.0 E b> 0.44549134 E Data differs at [7, 102]: E a> 0.0 E b> 2.8770452 E Data differs at [8, 102]: E a> 0.0 E b> 0.4184726 E Data differs at [9, 102]: E a> 0.0 E b> 4.171244 E Data differs at [10, 102]: E a> 0.0 E b> 15.577756 E ... E 15666 different pixels found (28.39% different). E E Extension HDU 64 (SCI, 10): E E Headers contain differences: E Headers have different number of cards: E a: 30 E b: 32 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 65 (DQ, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 66 (ERR, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 67 (WAVELENGTH, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 68 (VAR_POISSON, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 69 (VAR_RNOISE, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 70 (VAR_FLAT, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484cca2490>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[srctype] | 0.54 | |
|
run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt..._srctype.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_srctype.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'srctype' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_srctype.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_srctype.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 48 E b: 50 E Extra keyword 'SRCDEC' in b: -30.40553434784723 E Extra keyword 'SRCRA' in b: 3.592040812067641 E Keyword SLTSTRT1 has different values: E a> 1389 E ? - E b> 1390 E ? + E Keyword SLTSTRT2 has different values: E a> 1113 E ? ^ E b> 1114 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.07601866 E b> 0.09491855 E Data differs at [2, 1]: E a> 0.091159254 E b> 0.020518458 E Data differs at [3, 1]: E a> 0.063286245 E b> 0.07317534 E Data differs at [4, 1]: E a> 0.05025898 E b> 0.07113351 E Data differs at [5, 1]: E a> 0.016595162 E b> 0.075566575 E Data differs at [6, 1]: E a> 0.07393524 E b> 0.061039086 E Data differs at [7, 1]: E a> 0.06604941 E b> 0.04007152 E Data differs at [8, 1]: E a> 0.006939598 E b> 0.0797044 E Data differs at [9, 1]: E a> 0.06425873 E b> 0.057408143 E Data differs at [10, 1]: E a> 0.06636904 E b> 0.07423474 E ... E 79333 different pixels found (99.99% different). E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0 E b> 4 E Data differs at [2, 1]: E a> 0 E b> 4 E Data differs at [5, 1]: E a> 0 E b> 4 E Data differs at [16, 1]: E a> 0 E b> 4 E Data differs at [17, 1]: E a> 0 E b> 4 E Data differs at [28, 1]: E a> 0 E b> 4 E Data differs at [32, 1]: E a> 4 E b> 0 E Data differs at [44, 1]: E a> 4 E b> 0 E Data differs at [46, 1]: E a> 0 E b> 16777221 E Data differs at [48, 1]: E a> 0 E b> 4 E ... E 13727 different pixels found (17.30% different). E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0.021101505 E b> 0.022167083 E Data differs at [2, 1]: E a> 0.021743273 E b> 0.021564962 E Data differs at [3, 1]: E a> 0.022068132 E b> 0.022213832 E Data differs at [4, 1]: E a> 0.020673273 E b> 0.021578563 E Data differs at [5, 1]: E a> 0.019631913 E b> 0.022153186 E Data differs at [6, 1]: E a> 0.021232158 E b> 0.020933269 E Data differs at [7, 1]: E a> 0.020554062 E b> 0.020602789 E Data differs at [8, 1]: E a> 0.019950496 E b> 0.02096566 E Data differs at [9, 1]: E a> 0.021507863 E b> 0.021246059 E Data differs at [10, 1]: E a> 0.021294583 E b> 0.021775313 E ... E 79315 different pixels found (99.97% different). E E Extension HDU 4 (WAVELENGTH, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [2, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [3, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [4, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [5, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [6, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [7, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [8, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [9, 1]: E a> 1.9013734 E b> 1.8966796 E Data differs at [10, 1]: E a> 1.9013734 E b> 1.8966796 E ... E 79339 different pixels found (100.00% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 0.00044092129 E b> 0.0004695498 E Data differs at [2, 1]: E a> 0.0004693386 E b> 0.00045110442 E Data differs at [3, 1]: E a> 0.00046863322 E b> 0.00047672258 E Data differs at [4, 1]: E a> 0.0004243046 E b> 0.0004620551 E Data differs at [5, 1]: E a> 0.00038146426 E b> 0.00048392726 E Data differs at [6, 1]: E a> 0.0004464778 E b> 0.00043413675 E Data differs at [7, 1]: E a> 0.0004173837 E b> 0.00041826177 E Data differs at [8, 1]: E a> 0.00039347596 E b> 0.00043684588 E Data differs at [9, 1]: E a> 0.00045359458 E b> 0.00044724232 E Data differs at [10, 1]: E a> 0.00044899594 E b> 0.00046903442 E ... E 79171 different pixels found (99.79% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 4.2842657e-06 E b> 2.1721587e-05 E Data differs at [2, 1]: E a> 3.3317215e-06 E b> 1.3938283e-05 E Data differs at [3, 1]: E a> 1.8322411e-05 E b> 1.6667349e-05 E Data differs at [4, 1]: E a> 3.0500287e-06 E b> 3.5189762e-06 E Data differs at [5, 1]: E a> 3.9447364e-06 E b> 6.7672145e-06 E Data differs at [6, 1]: E a> 4.2621227e-06 E b> 4.021001e-06 E Data differs at [7, 1]: E a> 5.034949e-06 E b> 6.1944747e-06 E Data differs at [8, 1]: E a> 4.545765e-06 E b> 2.6388068e-06 E Data differs at [9, 1]: E a> 8.945237e-06 E b> 4.1124395e-06 E Data differs at [10, 1]: E a> 4.4113017e-06 E b> 5.064231e-06 E ... E 75727 different pixels found (95.45% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [17, 1]: E a> 4.913979e-08 E b> 1.9260558e-07 E Data differs at [19, 1]: E a> 1.4055821e-07 E b> 1.3462205e-08 E Data differs at [20, 1]: E a> 7.747428e-09 E b> 1.1106848e-07 E Data differs at [21, 1]: E a> 1.4606553e-07 E b> 4.5921e-08 E Data differs at [45, 1]: E a> 1.017291e-08 E b> 1.1921217e-07 E Data differs at [47, 1]: E a> 9.3021155e-09 E b> 1.0938525e-07 E Data differs at [48, 1]: E a> 3.762465e-08 E b> 1.4567745e-07 E Data differs at [51, 1]: E a> 1.82091e-07 E b> 5.269996e-09 E Data differs at [55, 1]: E a> 1.7381811e-07 E b> 1.7002574e-08 E Data differs at [61, 1]: E a> 1.0950979e-07 E b> 2.4832877e-07 E ... E 50000 different pixels found (63.02% different). E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.40018067148927 E Extra keyword 'SRCRA' in b: 3.586356414491374 E Keyword SLTSTRT1 has different values: E a> 1032 E ? ^ E b> 1033 E ? ^ E Keyword SLTSTRT2 has different values: E a> 1314 E ? ^ E b> 1315 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.19990797 E b> 0.18290745 E Data differs at [2, 1]: E a> 0.23067056 E b> 0.2477534 E Data differs at [3, 1]: E a> 0.23131803 E b> 0.2964172 E Data differs at [4, 1]: E a> 0.20412807 E b> 0.2580659 E Data differs at [5, 1]: E a> 0.2401229 E b> 0.2511261 E Data differs at [6, 1]: E a> 0.23832908 E b> 0.19198704 E Data differs at [7, 1]: E a> 0.22189732 E b> 0.17562482 E Data differs at [8, 1]: E a> 0.14300282 E b> 0.17584698 E Data differs at [9, 1]: E a> 0.15427624 E b> 0.18087307 E Data differs at [10, 1]: E a> 0.20676768 E b> 0.12289692 E ... E 56770 different pixels found (100.00% different). E E Extension HDU 9 (DQ, 2): E E Data contains differences: E Data differs at [2, 1]: E a> 4 E b> 0 E Data differs at [3, 1]: E a> 4 E b> 0 E Data differs at [4, 1]: E a> 4 E b> 0 E Data differs at [12, 1]: E a> 0 E b> 4 E Data differs at [13, 1]: E a> 0 E b> 4 E Data differs at [15, 1]: E a> 4 E b> 8388613 E Data differs at [18, 1]: E a> 16779265 E b> 0 E Data differs at [20, 1]: E a> 0 E b> 35914753 E Data differs at [46, 1]: E a> 4 E b> 0 E Data differs at [47, 1]: E a> 4 E b> 0 E ... E 9676 different pixels found (17.04% different). E E Extension HDU 10 (ERR, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 0.0224017 E b> 0.023020292 E Data differs at [2, 1]: E a> 0.024187082 E b> 0.023029739 E Data differs at [3, 1]: E a> 0.02411214 E b> 0.023737837 E Data differs at [4, 1]: E a> 0.023702415 E b> 0.023137512 E Data differs at [5, 1]: E a> 0.023448238 E b> 0.023216644 E Data differs at [6, 1]: E a> 0.023274248 E b> 0.02180982 E Data differs at [7, 1]: E a> 0.023105526 E b> 0.022139112 E Data differs at [8, 1]: E a> 0.021588627 E b> 0.021680543 E Data differs at [9, 1]: E a> 0.020922955 E b> 0.02214974 E Data differs at [10, 1]: E a> 0.0227876 E b> 0.021650355 E ... E 56758 different pixels found (99.98% different). E E Extension HDU 11 (WAVELENGTH, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [2, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [3, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [4, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [5, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [6, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [7, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [8, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [9, 1]: E a> 1.7154493 E b> 1.7107556 E Data differs at [10, 1]: E a> 1.7154493 E b> 1.7107556 E ... E 56772 different pixels found (100.00% different). E E Extension HDU 12 (VAR_POISSON, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 0.0004967198 E b> 0.0005257822 E Data differs at [2, 1]: E a> 0.0005659332 E b> 0.0005248566 E Data differs at [3, 1]: E a> 0.0005600677 E b> 0.0005520634 E Data differs at [4, 1]: E a> 0.00052954094 E b> 0.0005299283 E Data differs at [5, 1]: E a> 0.00054649735 E b> 0.0005338184 E Data differs at [6, 1]: E a> 0.00053486385 E b> 0.00047162746 E Data differs at [7, 1]: E a> 0.0005210768 E b> 0.00048540108 E Data differs at [8, 1]: E a> 0.00046242232 E b> 0.00046590794 E Data differs at [9, 1]: E a> 0.00043405924 E b> 0.00048541123 E Data differs at [10, 1]: E a> 0.0005143815 E b> 0.00046457764 E ... E 56658 different pixels found (99.80% different). E E Extension HDU 13 (VAR_RNOISE, 2): E E Data contains differences: E Data differs at [1, 1]: E a> 4.665698e-06 E b> 3.7364505e-06 E Data differs at [2, 1]: E a> 1.8443272e-05 E b> 4.801762e-06 E Data differs at [3, 1]: E a> 2.0702795e-05 E b> 1.0406416e-05 E Data differs at [4, 1]: E a> 3.1765037e-05 E b> 4.660997e-06 E Data differs at [5, 1]: E a> 2.6672885e-06 E b> 4.456551e-06 E Data differs at [6, 1]: E a> 6.1673345e-06 E b> 3.636675e-06 E Data differs at [7, 1]: E a> 1.2237247e-05 E b> 4.381598e-06 E Data differs at [8, 1]: E a> 3.4235275e-06 E b> 3.815099e-06 E Data differs at [9, 1]: E a> 3.4832394e-06 E b> 4.8139077e-06 E Data differs at [10, 1]: E a> 4.3654472e-06 E b> 3.9951915e-06 E ... E 54296 different pixels found (95.64% different). E E Extension HDU 14 (VAR_FLAT, 2): E E Data contains differences: E Data differs at [3, 1]: E a> 6.248351e-07 E b> 1.0150636e-06 E Data differs at [4, 1]: E a> 4.9849564e-07 E b> 7.5511593e-07 E Data differs at [6, 1]: E a> 6.594963e-07 E b> 4.0410734e-07 E Data differs at [7, 1]: E a> 5.5132745e-07 E b> 3.5759572e-07 E Data differs at [8, 1]: E a> 2.2292639e-07 E ? ^ ^ ^ E b> 3.2294636e-07 E ? ^ ^ ^ E Data differs at [9, 1]: E a> 2.2759919e-07 E b> 3.858297e-07 E Data differs at [10, 1]: E a> 5.277661e-07 E b> 1.6503091e-07 E Data differs at [11, 1]: E a> 4.2515765e-07 E b> 6.758743e-07 E Data differs at [12, 1]: E a> 4.9715146e-07 E b> 7.964099e-07 E Data differs at [13, 1]: E a> 6.500649e-07 E b> 4.54274e-07 E ... E 42339 different pixels found (74.58% different). E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.39411309485647 E Extra keyword 'SRCRA' in b: 3.585624631060788 E Keyword NAXIS2 has different values: E a> 321 E b> 322 E Keyword SLTSIZE1 has different values: E a> 181 E b> 183 E Keyword SLTSIZE2 has different values: E a> 321 E b> 322 E Keyword SLTSTRT2 has different values: E a> 1177 E ? ^ E b> 1178 E ? ^ E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 16 (DQ, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 17 (ERR, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 18 (WAVELENGTH, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 19 (VAR_POISSON, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 20 (VAR_RNOISE, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 21 (VAR_FLAT, 3): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Data dimensions differ: E a: 181 x 321 E b: 183 x 322 E No further data comparison performed. E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.39163095906152 E Extra keyword 'SRCRA' in b: 3.59464814053007 E Keyword NAXIS2 has different values: E a> 228 E b> 229 E Keyword SLTSIZE1 has different values: E a> 197 E b> 199 E Keyword SLTSIZE2 has different values: E a> 228 E b> 229 E Keyword SLTSTRT2 has different values: E a> 801 E b> 802 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Data dimensions differ: E a: 197 x 228 E b: 199 x 229 E No further data comparison performed. E E Extension HDU 29 (SCI, 5): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.39602892937478 E Extra keyword 'SRCRA' in b: 3.58789771169632 E Keyword NAXIS2 has different values: E a> 203 E b> 205 E Keyword SLTSIZE2 has different values: E a> 203 E b> 205 E Keyword SLTSTRT1 has different values: E a> 857 E b> 858 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 30 (DQ, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 31 (ERR, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 32 (WAVELENGTH, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 33 (VAR_POISSON, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 34 (VAR_RNOISE, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 35 (VAR_FLAT, 5): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Data dimensions differ: E a: 154 x 203 E b: 154 x 205 E No further data comparison performed. E E Extension HDU 36 (SCI, 6): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSIZE1 has different values: E a> 133 E b> 134 E Keyword SLTSTRT2 has different values: E a> 217 E b> 218 E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 37 (DQ, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 38 (ERR, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 39 (WAVELENGTH, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 40 (VAR_POISSON, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 41 (VAR_RNOISE, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 42 (VAR_FLAT, 6): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 43 (SCI, 7): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.40926138863649 E Extra keyword 'SRCRA' in b: 3.579587921874186 E Keyword NAXIS2 has different values: E a> 209 E b> 211 E Keyword SLTSIZE1 has different values: E a> 117 E b> 119 E Keyword SLTSIZE2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 44 (DQ, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 45 (ERR, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 46 (WAVELENGTH, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 47 (VAR_POISSON, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 48 (VAR_RNOISE, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 49 (VAR_FLAT, 7): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Data dimensions differ: E a: 117 x 209 E b: 119 x 211 E No further data comparison performed. E E Extension HDU 50 (SCI, 8): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.38980139908971 E Extra keyword 'SRCRA' in b: 3.600004699000835 E Keyword NAXIS2 has different values: E a> 236 E b> 237 E Keyword SLTSIZE1 has different values: E a> 10 E b> 11 E Keyword SLTSIZE2 has different values: E a> 236 E b> 237 E Keyword SLTSTRT2 has different values: E a> 521 E b> 522 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 51 (DQ, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 52 (ERR, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 53 (WAVELENGTH, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 54 (VAR_POISSON, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 55 (VAR_RNOISE, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 56 (VAR_FLAT, 8): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Data dimensions differ: E a: 10 x 236 E b: 11 x 237 E No further data comparison performed. E E Extension HDU 57 (SCI, 9): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.3860237133523 E Extra keyword 'SRCRA' in b: 3.569829752935783 E Keyword SLTSTRT1 has different values: E a> 25 E b> 26 E Keyword SLTSTRT2 has different values: E a> 1791 E ? ^ E b> 1792 E ? ^ E E Data contains differences: E Data differs at [1, 1]: E a> 0.018300496 E b> 0.04914401 E Data differs at [2, 1]: E a> 0.07292115 E b> 0.03709803 E Data differs at [3, 1]: E a> 0.006714215 E b> 0.045797363 E Data differs at [4, 1]: E a> 0.057412837 E b> 0.030214189 E Data differs at [5, 1]: E a> 0.05260742 E b> 0.002094747 E Data differs at [6, 1]: E a> 0.013841207 E b> 0.07073075 E Data differs at [7, 1]: E a> 0.06833076 E b> 0.07115308 E Data differs at [8, 1]: E a> 0.04218341 E b> 0.047660735 E Data differs at [9, 1]: E a> 0.027864996 E b> 0.042478852 E Data differs at [10, 1]: E a> 0.059238214 E b> 0.044986747 E ... E 55174 different pixels found (100.00% different). E E Extension HDU 58 (DQ, 9): E E Data contains differences: E Data differs at [15, 1]: E a> 0 E b> 4 E Data differs at [16, 1]: E a> 0 E b> 4 E Data differs at [20, 1]: E a> 0 E b> 4 E Data differs at [21, 1]: E a> 0 E b> 4 E Data differs at [28, 1]: E a> 0 E b> 4 E Data differs at [32, 1]: E a> 4 E b> 0 E Data differs at [67, 1]: E a> 0 E b> 4 E Data differs at [68, 1]: E a> 0 E b> 4 E Data differs at [70, 1]: E a> 4 E b> 0 E Data differs at [71, 1]: E a> 4 E b> 0 E ... E 8836 different pixels found (16.01% different). E E Extension HDU 59 (ERR, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 0.01982531 E b> 0.019883042 E Data differs at [2, 1]: E a> 0.020379202 E b> 0.020768518 E Data differs at [3, 1]: E a> 0.01980809 E b> 0.0201421 E Data differs at [4, 1]: E a> 0.020428026 E b> 0.019892808 E Data differs at [5, 1]: E a> 0.020475939 E b> 0.019547174 E Data differs at [6, 1]: E a> 0.019923387 E b> 0.02070914 E Data differs at [7, 1]: E a> 0.020515747 E b> 0.020945193 E Data differs at [8, 1]: E a> 0.01992046 E b> 0.02074254 E Data differs at [9, 1]: E a> 0.0195891 E b> 0.020285513 E Data differs at [10, 1]: E a> 0.020573577 E b> 0.019876871 E ... E 55167 different pixels found (99.98% different). E E Extension HDU 60 (WAVELENGTH, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [2, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [3, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [4, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [5, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [6, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [7, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [8, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [9, 1]: E a> 1.7922435 E b> 1.7875497 E Data differs at [10, 1]: E a> 1.7922435 E b> 1.7875497 E ... E 55176 different pixels found (100.00% different). E E Extension HDU 61 (VAR_POISSON, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 0.00038881451 E b> 0.00039086334 E Data differs at [2, 1]: E a> 0.0004118398 E b> 0.00042644018 E Data differs at [3, 1]: E a> 0.00038849132 E b> 0.00040312088 E Data differs at [4, 1]: E a> 0.00041337454 E b> 0.00039108226 E Data differs at [5, 1]: E a> 0.00041502528 E b> 0.0003768711 E Data differs at [6, 1]: E a> 0.00039139003 E b> 0.0004251499 E Data differs at [7, 1]: E a> 0.00041772542 E b> 0.00043529167 E Data differs at [8, 1]: E a> 0.00039268463 E b> 0.00042584812 E Data differs at [9, 1]: E a> 0.00037906787 E b> 0.00040800878 E Data differs at [10, 1]: E a> 0.00041859446 E b> 0.0003918399 E ... E 55032 different pixels found (99.74% different). E E Extension HDU 62 (VAR_RNOISE, 9): E E Data contains differences: E Data differs at [1, 1]: E a> 4.224553e-06 E b> 4.444852e-06 E Data differs at [2, 1]: E a> 3.4088628e-06 E b> 4.874177e-06 E Data differs at [3, 1]: E a> 3.868535e-06 E b> 2.5592135e-06 E Data differs at [4, 1]: E a> 3.8915937e-06 E b> 4.6309597e-06 E Data differs at [5, 1]: E a> 4.2061934e-06 E b> 5.220881e-06 E Data differs at [6, 1]: E a> 5.549274e-06 E b> 3.6613828e-06 E Data differs at [7, 1]: E a> 3.116495e-06 E b> 3.3503884e-06 E Data differs at [8, 1]: E a> 4.1193985e-06 E b> 4.377403e-06 E Data differs at [9, 1]: E a> 4.656189e-06 E b> 3.4719258e-06 E Data differs at [10, 1]: E a> 4.6361974e-06 E b> 3.2270991e-06 E ... E 52507 different pixels found (95.16% different). E E Extension HDU 63 (VAR_FLAT, 9): E E Data contains differences: E Data differs at [113, 1]: E a> 1.4214218e-07 E b> 1.9844174e-08 E Data differs at [119, 1]: E a> 2.5894991e-08 E b> 1.5745938e-07 E Data differs at [122, 1]: E a> 2.652957e-07 E b> 1.3733384e-07 E Data differs at [123, 1]: E a> 3.9400356e-07 E b> 1.0309822e-07 E Data differs at [125, 1]: E a> 4.227829e-07 E ? ^ - E b> 3.2127582e-07 E ? ^ + + E Data differs at [127, 1]: E a> 5.5986595e-07 E b> 6.782127e-07 E Data differs at [128, 1]: E a> 7.1790396e-07 E b> 1.0329828e-06 E Data differs at [130, 1]: E a> 1.4445675e-06 E b> 9.4824804e-07 E Data differs at [131, 1]: E a> 1.9395357e-06 E b> 0.0 E Data differs at [132, 1]: E a> 2.1240514e-06 E b> 1.7619503e-06 E ... E 10858 different pixels found (19.68% different). E E Extension HDU 64 (SCI, 10): E E Headers contain differences: E Headers have different number of cards: E a: 24 E b: 26 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 65 (DQ, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 66 (ERR, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 67 (WAVELENGTH, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 68 (VAR_POISSON, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 69 (VAR_RNOISE, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 70 (VAR_FLAT, 10): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484dbf1040>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[x1d] | 0.31 | |
|
run_nis_wfss_spec2 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...0001_nis_x1d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324001001_03101_00001_nis_x1d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'x1d' @pytest.mark.bigdata @pytest.mark.parametrize( 'suffix', ['assign_wcs', 'bsub', 'cal', 'esec', 'extract_2d', 'flat_field', 'photom', 'srctype', 'x1d'] ) def test_nis_wfss_spec2(run_nis_wfss_spec2, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test for calwebb_spec2 applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324001001_03101_00001_nis_rate.fits" output = "jw01324001001_03101_00001_nis_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_x1d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324001001_03101_00001_nis_x1d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (EXTRACT1D, 1): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40553434784723 E Extra keyword 'SRCRA' in b: 3.592040812067641 E E Data contains differences: E Column FLUX data differs in row 124: E a> nan E b> 0.19965209435453296 E Column FLUX data differs in row 125: E a> 0.19958615840908814 E b> 0.08338277790683482 E Column FLUX data differs in row 126: E a> 0.08341154852786625 E b> 0.03449557935081653 E Column FLUX data differs in row 127: E a> 0.034498400786272476 E b> 0.012638582714221514 E Column FLUX data differs in row 128: E a> 0.01264034428322908 E b> 0.005567820821205211 E Column FLUX data differs in row 129: E a> 0.005568299248189053 E b> 0.003188758983656166 E Column FLUX data differs in row 130: E a> 0.003188177393866602 E b> 0.0015855300448706306 E Column FLUX data differs in row 131: E a> 0.001585639431825048 E b> 0.000772139447951667 E Column FLUX data differs in row 132: E a> 0.0007721346410758137 E b> 0.0005796982121486047 E Column FLUX data differs in row 133: E a> 0.0005798783091780554 E b> 0.000516048352137196 E ...840 additional difference(s) found. E ... E 850 different table data element(s) found (13.15% different). E E Extension HDU 2 (EXTRACT1D, 2): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40018067148927 E Extra keyword 'SRCRA' in b: 3.586356414491374 E E Data contains differences: E Column FLUX data differs in row 84: E a> nan E b> 0.2698664362820044 E Column FLUX data differs in row 85: E a> 0.26962464603525377 E b> 0.12211139396311618 E Column FLUX data differs in row 86: E a> 0.12198819415895164 E b> 0.04962625225288255 E Column FLUX data differs in row 87: E a> 0.049562661762685284 E b> 0.018258746925414057 E Column FLUX data differs in row 88: E a> 0.018230759394177298 E b> 0.006916025273632863 E Column FLUX data differs in row 89: E a> 0.006904931872381813 E b> 0.0038529326099182304 E Column FLUX data differs in row 90: E a> 0.003847998458144548 E b> 0.0020143717741633524 E Column FLUX data differs in row 91: E a> 0.0020123750565986557 E b> 0.0009705948534178853 E Column FLUX data differs in row 92: E a> 0.000969239564575972 E b> 0.0006048949833789275 E Column FLUX data differs in row 93: E a> 0.0006042013648555952 E b> 0.0005068685810364957 E ...739 additional difference(s) found. E ... E 749 different table data element(s) found (16.71% different). E E Extension HDU 3 (EXTRACT1D, 3): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.39411309485647 E Extra keyword 'SRCRA' in b: 3.585624631060788 E Keyword NAXIS2 has different values: E a> 321 E b> 322 E E Data contains differences: E Table rows differ: E a: 321 E b: 322 E No further data comparison performed. E E Extension HDU 4 (EXTRACT1D, 4): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.39163095906152 E Extra keyword 'SRCRA' in b: 3.59464814053007 E Keyword NAXIS2 has different values: E a> 228 E b> 229 E E Data contains differences: E Table rows differ: E a: 228 E b: 229 E No further data comparison performed. E E Extension HDU 5 (EXTRACT1D, 5): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.39602892937478 E Extra keyword 'SRCRA' in b: 3.58789771169632 E Keyword NAXIS2 has different values: E a> 203 E b> 205 E E Data contains differences: E Table rows differ: E a: 203 E b: 205 E No further data comparison performed. E E Extension HDU 6 (EXTRACT1D, 6): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E E Data contains differences: E Column FLUX data differs in row 161: E a> nan E b> 0.02055506829163751 E Column FLUX data differs in row 162: E a> 0.020566550871851032 E b> 0.009067604615706314 E Column FLUX data differs in row 163: E a> 0.009072489957081147 E b> 0.0037622867952118596 E Column FLUX data differs in row 164: E a> 0.0037641753564277825 E b> 0.0014371262123989322 E Column FLUX data differs in row 165: E a> 0.001437808952700884 E b> 0.0006427779261091129 E Column FLUX data differs in row 166: E a> 0.0006430716156747743 E b> 0.00036997742474840866 E Column FLUX data differs in row 167: E a> 0.00037013865236702227 E b> 0.00019656917044116515 E Column FLUX data differs in row 168: E a> 0.00019664895703308365 E b> 9.840838855921807e-05 E Column FLUX data differs in row 169: E a> 9.844657628756582e-05 E b> 7.485421522527449e-05 E Column FLUX data differs in row 170: E a> 7.488107704058298e-05 E b> 6.865055736478408e-05 E ...799 additional difference(s) found. E ... E 809 different table data element(s) found (13.62% different). E E Extension HDU 7 (EXTRACT1D, 7): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40926138863649 E Extra keyword 'SRCRA' in b: 3.579587921874186 E Keyword NAXIS2 has different values: E a> 209 E b> 211 E E Data contains differences: E Table rows differ: E a: 209 E b: 211 E No further data comparison performed. E E Extension HDU 8 (EXTRACT1D, 8): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38980139908971 E Extra keyword 'SRCRA' in b: 3.600004699000835 E Keyword NAXIS2 has different values: E a> 236 E b> 237 E E Data contains differences: E Table rows differ: E a: 236 E b: 237 E No further data comparison performed. E E Extension HDU 9 (EXTRACT1D, 9): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.3860237133523 E Extra keyword 'SRCRA' in b: 3.569829752935783 E E Data contains differences: E Column FLUX data differs in row 101: E a> nan E b> 0.05615284242707679 E Column FLUX data differs in row 102: E a> 0.05616139296423502 E b> 0.02412590346558556 E Column FLUX data differs in row 103: E a> 0.02413037459729436 E b> 0.00916803769701577 E Column FLUX data differs in row 104: E a> 0.009174279185418032 E b> 0.003397537889758585 E Column FLUX data differs in row 105: E a> 0.0033965946326864407 E b> 0.0016459808930530768 E Column FLUX data differs in row 106: E a> 0.0016463490659715892 E b> 0.000891709815032751 E Column FLUX data differs in row 107: E a> 0.0008908816672572794 E b> 0.0004284594250636278 E Column FLUX data differs in row 108: E a> 0.00042849662801539885 E b> 0.00021847853103165005 E Column FLUX data differs in row 109: E a> 0.0002184973556952005 E b> 0.00017133875846272038 E Column FLUX data differs in row 110: E a> 0.00017132569453140543 E b> 0.00014841618141793223 E ...695 additional difference(s) found. E ... E 705 different table data element(s) found (16.18% different). E E Extension HDU 10 (EXTRACT1D, 10): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Table rows differ: E a: 189 E b: 191 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484ddedd60>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:59: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00015-cal] | 38.46 | |
|
run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits'} suffix = 'cal', source_id = 's00015' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 2 (DQ, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 3 (ERR, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 4 (WAVELENGTH, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 5 (VAR_POISSON, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 6 (VAR_RNOISE, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 7 (VAR_FLAT, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Data dimensions differ: E a: 139 x 189 E b: 140 x 191 E No further data comparison performed. E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 194 E b> 195 E Keyword SLTSIZE1 has different values: E a> 139 E b> 140 E Keyword SLTSIZE2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 9 (DQ, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 10 (ERR, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 11 (WAVELENGTH, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 12 (VAR_POISSON, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 13 (VAR_RNOISE, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 14 (VAR_FLAT, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Data dimensions differ: E a: 139 x 194 E b: 140 x 195 E No further data comparison performed. E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword SLTSIZE1 has different values: E a> 213 E b> 214 E Keyword SLTSTRT2 has different values: E a> 53 E b> 54 E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 16 (DQ, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 17 (ERR, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 18 (WAVELENGTH, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 19 (VAR_POISSON, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 20 (VAR_RNOISE, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 21 (VAR_FLAT, 3): E E Data contains differences: E Data dimensions differ: E a: 213 x 133 E b: 214 x 133 E No further data comparison performed. E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 132 E b> 134 E Keyword SLTSIZE1 has different values: E a> 213 E b> 214 E Keyword SLTSIZE2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 132 E b> 134 E E Data contains differences: E Data dimensions differ: E a: 213 x 132 E b: 214 x 134 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f4842750c70>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError -----------------------------Captured stderr setup------------------------------ 2022-12-04 03:48:35,556 - stpipe.Spec3Pipeline - INFO - Spec3Pipeline instance created. 2022-12-04 03:48:35,557 - stpipe.Spec3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2022-12-04 03:48:35,558 - stpipe.Spec3Pipeline.master_background - INFO - MasterBackgroundStep instance created. 2022-12-04 03:48:35,559 - stpipe.Spec3Pipeline.mrs_imatch - INFO - MRSIMatchStep instance created. 2022-12-04 03:48:35,560 - stpipe.Spec3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-12-04 03:48:35,561 - stpipe.Spec3Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2022-12-04 03:48:35,562 - stpipe.Spec3Pipeline.cube_build - INFO - CubeBuildStep instance created. 2022-12-04 03:48:35,563 - stpipe.Spec3Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-12-04 03:48:35,564 - stpipe.Spec3Pipeline.photom - INFO - PhotomStep instance created. 2022-12-04 03:48:35,565 - stpipe.Spec3Pipeline.combine_1d - INFO - Combine1dStep instance created. 2022-12-04 03:48:36,028 - stpipe.Spec3Pipeline - INFO - Step Spec3Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec3_003_asn.json',). 2022-12-04 03:48:36,036 - stpipe.Spec3Pipeline - INFO - Step Spec3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'user_background': None, 'save_background': False, 'force_subtract': False}, 'mrs_imatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'bkg_degree': 1, 'subtract': False}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None, 'in_memory': False}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'combine_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'}}} 2022-12-04 03:48:36,985 - stpipe.Spec3Pipeline - INFO - Prefetching reference files for dataset: 'jw01324001001_03101_00001_nis_cal.fits' reftypes = ['apcorr', 'area', 'cubepar', 'drizpars', 'extract1d', 'photom', 'speckernel', 'specprofile', 'spectrace', 'wavemap'] 2022-12-04 03:48:36,994 - stpipe.Spec3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. 2022-12-04 03:48:36,995 - stpipe.Spec3Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2022-12-04 03:48:36,995 - stpipe.Spec3Pipeline - INFO - Prefetch for CUBEPAR reference file is 'N/A'. 2022-12-04 03:48:36,996 - stpipe.Spec3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. 2022-12-04 03:48:36,997 - stpipe.Spec3Pipeline - INFO - Prefetch for EXTRACT1D reference file is 'N/A'. 2022-12-04 03:48:36,997 - stpipe.Spec3Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. 2022-12-04 03:48:36,998 - stpipe.Spec3Pipeline - INFO - Prefetch for SPECKERNEL reference file is 'N/A'. 2022-12-04 03:48:36,998 - stpipe.Spec3Pipeline - INFO - Prefetch for SPECPROFILE reference file is 'N/A'. 2022-12-04 03:48:36,998 - stpipe.Spec3Pipeline - INFO - Prefetch for SPECTRACE reference file is 'N/A'. 2022-12-04 03:48:36,998 - stpipe.Spec3Pipeline - INFO - Prefetch for WAVEMAP reference file is 'N/A'. 2022-12-04 03:48:36,999 - stpipe.Spec3Pipeline - INFO - Starting calwebb_spec3 ... 2022-12-04 03:48:42,334 - stpipe.Spec3Pipeline - INFO - Convert from exposure-based to source-based data. 2022-12-04 03:48:42,334 - stpipe.Spec3Pipeline - INFO - Reorganizing data from exposure jw01324001001_03101_00001_nis_cal.fits 2022-12-04 03:48:43,472 - stpipe.Spec3Pipeline - INFO - Reorganizing data from exposure jw01324001001_03101_00002_nis_cal.fits 2022-12-04 03:48:43,838 - stpipe.Spec3Pipeline - INFO - Reorganizing data from exposure jw01324001001_05101_00002_nis_cal.fits 2022-12-04 03:48:44,237 - stpipe.Spec3Pipeline - INFO - Reorganizing data from exposure jw01324001001_05101_00001_nis_cal.fits 2022-12-04 03:48:45,862 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:46,420 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:46,421 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:46,540 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:46,540 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:46,579 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:48:46,579 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:46,581 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=358 2022-12-04 03:48:46,657 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:48:46,658 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:46,660 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=357 2022-12-04 03:48:46,737 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:48:46,737 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:46,740 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=284 2022-12-04 03:48:46,813 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:48:46,814 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:46,816 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=283 2022-12-04 03:48:47,084 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:48:47,084 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:48:47,590 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:48:47,591 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:48:47,596 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:48:47,634 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:48:47,636 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:48:47,638 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:48:47,640 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:48:47,641 - stpipe.Spec3Pipeline.combine_1d - WARNING - 1 output pixel numbers were NaN 2022-12-04 03:48:47,642 - stpipe.Spec3Pipeline.combine_1d - WARNING - 8 elements of output had no corresponding input data; 2022-12-04 03:48:47,642 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:48:47,786 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:48:47,787 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:48:48,566 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:49,143 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:49,144 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:49,259 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:49,259 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:49,298 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:48:49,298 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:49,300 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 2022-12-04 03:48:49,370 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:48:49,370 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:49,372 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 2022-12-04 03:48:49,441 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:48:49,442 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:49,444 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=174 2022-12-04 03:48:49,515 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:48:49,516 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:49,518 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=173 2022-12-04 03:48:49,766 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:48:49,767 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:48:50,278 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:48:50,279 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:48:50,285 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:48:50,316 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:48:50,317 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:48:50,319 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:48:50,320 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:48:50,322 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:48:50,322 - stpipe.Spec3Pipeline.combine_1d - WARNING - 11 elements of output had no corresponding input data; 2022-12-04 03:48:50,322 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:48:50,467 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:48:50,467 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:48:51,245 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:51,751 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:51,752 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:51,863 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:51,863 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:51,903 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:48:51,903 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:51,905 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 2022-12-04 03:48:51,979 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:48:51,979 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:51,981 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 2022-12-04 03:48:52,054 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:48:52,054 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:52,056 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 2022-12-04 03:48:52,127 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:48:52,128 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:52,130 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 2022-12-04 03:48:52,376 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:48:52,376 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:48:52,890 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:48:52,891 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:48:52,897 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:48:52,930 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:48:52,931 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:48:52,933 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:48:52,934 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:48:52,936 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:48:52,936 - stpipe.Spec3Pipeline.combine_1d - WARNING - 12 elements of output had no corresponding input data; 2022-12-04 03:48:52,936 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:48:53,080 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:48:53,080 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:48:53,846 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:54,355 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:54,357 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:54,465 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:54,465 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:54,503 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:48:54,503 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:54,505 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 2022-12-04 03:48:54,573 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:48:54,574 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:54,575 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 2022-12-04 03:48:54,643 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:48:54,643 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:54,645 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=152 2022-12-04 03:48:54,715 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:48:54,716 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:54,717 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=153 2022-12-04 03:48:54,962 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:48:54,962 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:48:55,481 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:48:55,481 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:48:55,487 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:48:55,516 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:48:55,518 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:48:55,519 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:48:55,521 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:48:55,522 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:48:55,665 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:48:55,666 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:48:56,475 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:56,989 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:56,990 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:57,101 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:57,101 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:57,140 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:48:57,140 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:57,142 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=202 2022-12-04 03:48:57,211 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:48:57,211 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:57,213 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=203 2022-12-04 03:48:57,282 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:48:57,282 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:57,284 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=128 2022-12-04 03:48:57,355 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:48:57,355 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:57,357 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=129 2022-12-04 03:48:57,605 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:48:57,605 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:48:58,125 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:48:58,126 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:48:58,132 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:48:58,158 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:48:58,159 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:48:58,161 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:48:58,162 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:48:58,163 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:48:58,163 - stpipe.Spec3Pipeline.combine_1d - WARNING - 12 elements of output had no corresponding input data; 2022-12-04 03:48:58,163 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:48:58,304 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:48:58,304 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:48:59,088 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:48:59,615 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:48:59,616 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:59,729 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:59,729 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:59,769 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:48:59,769 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:59,771 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=132, ystart=0, ystop=329 2022-12-04 03:48:59,846 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:48:59,846 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:59,848 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=127, ystart=0, ystop=328 2022-12-04 03:48:59,920 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:48:59,920 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:59,922 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=177, ystart=0, ystop=255 2022-12-04 03:48:59,993 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:48:59,993 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:59,995 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=185, ystart=0, ystop=254 2022-12-04 03:49:00,245 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:49:00,245 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:49:00,764 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:49:00,765 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:49:00,770 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:49:00,800 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:49:00,802 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:49:00,804 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:49:00,805 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:49:00,806 - stpipe.Spec3Pipeline.combine_1d - WARNING - 1 output pixel numbers were NaN 2022-12-04 03:49:00,806 - stpipe.Spec3Pipeline.combine_1d - WARNING - 3 elements of output had no corresponding input data; 2022-12-04 03:49:00,806 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:49:00,948 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:49:00,948 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:49:01,710 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:49:02,236 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:49:02,238 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:49:02,349 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:49:02,349 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:49:02,389 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:49:02,389 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:02,391 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=208 2022-12-04 03:49:02,460 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:49:02,461 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:02,462 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=209 2022-12-04 03:49:02,530 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:49:02,530 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:02,532 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=134 2022-12-04 03:49:02,600 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:49:02,600 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:02,602 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=135 2022-12-04 03:49:02,847 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:49:02,847 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:49:03,379 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:49:03,380 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:49:03,386 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:49:03,411 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:49:03,413 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:49:03,414 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:49:03,415 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:49:03,416 - stpipe.Spec3Pipeline.combine_1d - WARNING - 3 output pixel numbers were NaN 2022-12-04 03:49:03,416 - stpipe.Spec3Pipeline.combine_1d - WARNING - 13 elements of output had no corresponding input data; 2022-12-04 03:49:03,417 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:49:03,559 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:49:03,559 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:49:04,321 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:49:04,841 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:49:04,842 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:49:04,951 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:49:04,951 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:49:04,990 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:49:04,992 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 2022-12-04 03:49:05,063 - stpipe.Spec3Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:49:05,215 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:49:05,217 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 2022-12-04 03:49:05,284 - stpipe.Spec3Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:49:05,431 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:49:05,433 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 2022-12-04 03:49:05,499 - stpipe.Spec3Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:49:05,631 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:49:05,633 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 2022-12-04 03:49:05,701 - stpipe.Spec3Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:49:06,007 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:49:06,008 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:49:06,536 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:49:06,536 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:49:06,542 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:49:06,569 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:49:06,570 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:49:06,572 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:49:06,573 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:49:06,574 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:49:06,574 - stpipe.Spec3Pipeline.combine_1d - WARNING - 15 elements of output had no corresponding input data; 2022-12-04 03:49:06,574 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:49:06,715 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:49:06,715 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:49:07,523 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:49:08,055 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:49:08,056 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:49:08,172 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:49:08,172 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:49:08,212 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:49:08,212 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:08,214 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=241 2022-12-04 03:49:08,293 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:49:08,293 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:08,295 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=240 2022-12-04 03:49:08,368 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:49:08,368 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:08,370 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=283, ystart=0, ystop=167 2022-12-04 03:49:08,444 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:49:08,444 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:08,446 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=275, ystart=0, ystop=166 2022-12-04 03:49:08,701 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:49:08,701 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:49:09,233 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:49:09,234 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:49:09,239 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:49:09,269 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:49:09,270 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:49:09,272 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:49:09,273 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:49:09,275 - stpipe.Spec3Pipeline.combine_1d - WARNING - 1 output pixel numbers were NaN 2022-12-04 03:49:09,275 - stpipe.Spec3Pipeline.combine_1d - WARNING - 19 elements of output had no corresponding input data; 2022-12-04 03:49:09,275 - stpipe.Spec3Pipeline.combine_1d - WARNING - these elements will be omitted. 2022-12-04 03:49:09,419 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:49:09,419 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:49:10,200 - stpipe.Spec3Pipeline - INFO - Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits 2022-12-04 03:49:10,736 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SourceModelContainer>,). 2022-12-04 03:49:10,738 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:49:10,850 - stpipe.Spec3Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:49:10,850 - stpipe.Spec3Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:49:10,891 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:49:10,891 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:10,893 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=188 2022-12-04 03:49:10,964 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:49:10,964 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:10,966 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=193 2022-12-04 03:49:11,037 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:49:11,037 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:11,039 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=132 2022-12-04 03:49:11,113 - stpipe.Spec3Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:49:11,114 - stpipe.Spec3Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:49:11,116 - stpipe.Spec3Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=131 2022-12-04 03:49:11,369 - stpipe.Spec3Pipeline.extract_1d - INFO - Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits 2022-12-04 03:49:11,369 - stpipe.Spec3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:49:11,903 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits>,). 2022-12-04 03:49:11,904 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} 2022-12-04 03:49:11,909 - stpipe.Spec3Pipeline.combine_1d - INFO - Using exposure time as the weight. 2022-12-04 03:49:11,935 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 1 2022-12-04 03:49:11,936 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 2 2022-12-04 03:49:11,937 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 3 2022-12-04 03:49:11,939 - stpipe.Spec3Pipeline.combine_1d - INFO - Accumulating data from input spectrum 4 2022-12-04 03:49:11,940 - stpipe.Spec3Pipeline.combine_1d - WARNING - 2 output pixel numbers were NaN 2022-12-04 03:49:12,080 - stpipe.Spec3Pipeline.combine_1d - INFO - Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits 2022-12-04 03:49:12,080 - stpipe.Spec3Pipeline.combine_1d - INFO - Step combine_1d done 2022-12-04 03:49:12,080 - stpipe.Spec3Pipeline - INFO - Ending calwebb_spec3 2022-12-04 03:49:12,081 - stpipe.Spec3Pipeline - INFO - Step Spec3Pipeline done -------------------------------Captured log setup------------------------------- INFO stpipe.Spec3Pipeline:step.py:366 Spec3Pipeline instance created. INFO stpipe.Spec3Pipeline.assign_mtwcs:step.py:366 AssignMTWcsStep instance created. INFO stpipe.Spec3Pipeline.master_background:step.py:366 MasterBackgroundStep instance created. INFO stpipe.Spec3Pipeline.mrs_imatch:step.py:366 MRSIMatchStep instance created. INFO stpipe.Spec3Pipeline.outlier_detection:step.py:366 OutlierDetectionStep instance created. INFO stpipe.Spec3Pipeline.resample_spec:step.py:366 ResampleSpecStep instance created. INFO stpipe.Spec3Pipeline.cube_build:step.py:366 CubeBuildStep instance created. INFO stpipe.Spec3Pipeline.extract_1d:step.py:366 Extract1dStep instance created. INFO stpipe.Spec3Pipeline.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec3Pipeline.combine_1d:step.py:366 Combine1dStep instance created. INFO stpipe.Spec3Pipeline:step.py:430 Step Spec3Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec3_003_asn.json',). INFO stpipe.Spec3Pipeline:step.py:434 Step Spec3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'user_background': None, 'save_background': False, 'force_subtract': False}, 'mrs_imatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'bkg_degree': 1, 'subtract': False}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None, 'in_memory': False}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'combine_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'}}} INFO stpipe.Spec3Pipeline:pipeline.py:358 Prefetching reference files for dataset: 'jw01324001001_03101_00001_nis_cal.fits' reftypes = ['apcorr', 'area', 'cubepar', 'drizpars', 'extract1d', 'photom', 'speckernel', 'specprofile', 'spectrace', 'wavemap'] INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for CUBEPAR reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for EXTRACT1D reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for SPECKERNEL reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for SPECPROFILE reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for SPECTRACE reference file is 'N/A'. INFO stpipe.Spec3Pipeline:pipeline.py:366 Prefetch for WAVEMAP reference file is 'N/A'. INFO stpipe.Spec3Pipeline:calwebb_spec3.py:76 Starting calwebb_spec3 ... INFO stpipe.Spec3Pipeline:calwebb_spec3.py:160 Convert from exposure-based to source-based data. INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_03101_00001_nis_cal.fits INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_03101_00001_nis_cal.fits DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_03101_00002_nis_cal.fits INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_03101_00002_nis_cal.fits DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_05101_00002_nis_cal.fits INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_05101_00002_nis_cal.fits DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_05101_00001_nis_cal.fits INFO stpipe.Spec3Pipeline:exp_to_source.py:37 Reorganizing data from exposure jw01324001001_05101_00001_nis_cal.fits DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 432 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 477 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 450 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 322 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 456 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 104 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 675 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 220 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 678 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 DEBUG stpipe.Spec3Pipeline:exp_to_source.py:40 Copying source 15 INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 358 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 358 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=358 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=358 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 357 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 357 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=357 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=357 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 284 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 284 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [284.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [284.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=284 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=284 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 283 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 283 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [283.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [283.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=283 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=283 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 8 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 8 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00432_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 174 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 174 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [174.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [174.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=174 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=174 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 173 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 173 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [173.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [173.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=173 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=173 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 11 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 11 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00477_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 12 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 12 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00450_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 152 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 152 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [152.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [152.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=152 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=152 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=153 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00322_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 202 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 202 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=202 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=202 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 203 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 203 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=203 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=203 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 128 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 128 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [128.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [128.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=128 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=128 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 129 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 129 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [129.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [129.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=129 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=129 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 12 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 12 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00456_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 132 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 132 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 329 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 329 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=132, ystart=0, ystop=329 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=132, ystart=0, ystop=329 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 127 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 127 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 328 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 328 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [127.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [127.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=127, ystart=0, ystop=328 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=127, ystart=0, ystop=328 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 177 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 177 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 255 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 255 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [255.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [255.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=177, ystart=0, ystop=255 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=177, ystart=0, ystop=255 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 185 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 185 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [254.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [254.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=185, ystart=0, ystop=254 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=185, ystart=0, ystop=254 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 3 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 3 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 208 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 208 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=208 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=208 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 209 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 209 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=209 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=209 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 134 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 134 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [134.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [134.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=134 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=134 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 135 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 135 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [135.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [135.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=135 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=135 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 3 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 3 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 13 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 13 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00675_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 15 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 15 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00220_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 241 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 241 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=241 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=241 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 240 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 240 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=240 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=240 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 283 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 283 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 167 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 167 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [167.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [167.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=283, ystart=0, ystop=167 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=283, ystart=0, ystop=167 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 275 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 275 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 166 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 166 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [166.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [166.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=275, ystart=0, ystop=166 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=275, ystart=0, ystop=166 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 1 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 19 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:241 19 elements of output had no corresponding input data; WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:243 these elements will be omitted. INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00678_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:step.py:1016 Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_cal.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<SourceModelContainer>,). INFO stpipe.Spec3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:154 Input is a SourceModelContainer DEBUG stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:181 Input contains 4 items INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:199 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits INFO stpipe.Spec3Pipeline.extract_1d:extract_1d_step.py:202 No EXTRACT1D reference file will be used DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2789 Input is a Source Model. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2796 Input SourceContainer holds a list of SlitModels. INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 188 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 188 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=188 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=188 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 193 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 193 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=193 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=193 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 132 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 132 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=132 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=132 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'jwst.datamodels.slit.SlitModel'> INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 131 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:446 initial ystop = 131 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [131.5]] DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [131.5]] INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=131 INFO stpipe.Spec3Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=131 DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec3Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec3Pipeline.extract_1d:step.py:1016 Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits INFO stpipe.Spec3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec3Pipeline.combine_1d:step.py:430 Step combine_1d running with args (<MultiSpecModel from jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits>,). INFO stpipe.Spec3Pipeline.combine_1d:step.py:434 Step combine_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'c1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'exptime_key': 'exposure_time'} DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. DEBUG stpipe.Spec3Pipeline.combine_1d:combine1d.py:572 Using exptime_key = exposure_time. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:537 Using exposure time as the weight. INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 1 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 2 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 3 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 INFO stpipe.Spec3Pipeline.combine_1d:combine1d.py:204 Accumulating data from input spectrum 4 WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN WARNING stpipe.Spec3Pipeline.combine_1d:combine1d.py:232 2 output pixel numbers were NaN INFO stpipe.Spec3Pipeline.combine_1d:step.py:1016 Saved model in jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits INFO stpipe.Spec3Pipeline.combine_1d:step.py:546 Step combine_1d done INFO stpipe.Spec3Pipeline:calwebb_spec3.py:280 Ending calwebb_spec3 INFO stpipe.Spec3Pipeline:step.py:546 Step Spec3Pipeline done | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00015-x1d] | 0.18 | |
|
run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits'} suffix = 'x1d', source_id = 's00015' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_x1d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (EXTRACT1D, 1): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 189 E b> 191 E E Data contains differences: E Table rows differ: E a: 189 E b: 191 E No further data comparison performed. E E Extension HDU 2 (EXTRACT1D, 2): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 194 E b> 195 E E Data contains differences: E Table rows differ: E a: 194 E b: 195 E No further data comparison performed. E E Extension HDU 3 (EXTRACT1D, 3): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 213 E b> 214 E E Data contains differences: E Table rows differ: E a: 213 E b: 214 E No further data comparison performed. E E Extension HDU 4 (EXTRACT1D, 4): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.38220367687618 E Extra keyword 'SRCRA' in b: 3.609501210445426 E Keyword NAXIS2 has different values: E a> 213 E b> 214 E E Data contains differences: E Table rows differ: E a: 213 E b: 214 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484277b520>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00015-c1d] | 0.14 | |
|
run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits'} suffix = 'c1d', source_id = 's00015' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00015_niriss_f115w-gr150c-gr150r_c1d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (COMBINE1D, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 222 E b> 223 E E Data contains differences: E Table rows differ: E a: 222 E b: 223 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484276b2b0>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00104-cal] | 0.38 | |
|
run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits'} suffix = 'cal', source_id = 's00104' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSIZE1 has different values: E a> 133 E b> 134 E Keyword SLTSTRT2 has different values: E a> 217 E b> 218 E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 2 (DQ, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 3 (ERR, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 4 (WAVELENGTH, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data dimensions differ: E a: 133 x 330 E b: 134 x 330 E No further data comparison performed. E E Extension HDU 8 (SCI, 2): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword NAXIS2 has different values: E a> 329 E b> 331 E Keyword SLTSIZE2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 9 (DQ, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 10 (ERR, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 11 (WAVELENGTH, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 12 (VAR_POISSON, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 13 (VAR_RNOISE, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 14 (VAR_FLAT, 2): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Data dimensions differ: E a: 128 x 329 E b: 128 x 331 E No further data comparison performed. E E Extension HDU 15 (SCI, 3): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword SLTSTRT2 has different values: E a> 287 E b> 288 E E Data contains differences: E Data differs at [89, 1]: E a> -74.07165 E b> -339.34348 E Data differs at [90, 1]: E a> 286.5817 E b> 121.14829 E Data differs at [91, 1]: E a> 26.508356 E b> 68.865234 E Data differs at [92, 1]: E a> 27.633263 E b> 5.8705287 E Data differs at [93, 1]: E a> 3.9196436 E b> 18.383652 E Data differs at [94, 1]: E a> -3.9956641 E b> 5.262102 E Data differs at [95, 1]: E a> 1.0805693 E b> 0.46943638 E Data differs at [96, 1]: E a> 1.0126586 E b> 2.5576546 E Data differs at [97, 1]: E a> 1.0354162 E b> 0.49483985 E Data differs at [98, 1]: E a> 0.38727894 E b> 0.4743746 E ... E 17663 different pixels found (38.76% different). E E Extension HDU 16 (DQ, 3): E E Data contains differences: E Data differs at [8, 1]: E a> 1 E b> 5 E Data differs at [12, 1]: E a> 1 E b> 5 E Data differs at [18, 1]: E a> 1 E b> 5 E Data differs at [19, 1]: E a> 1 E b> 5 E Data differs at [26, 1]: E a> 16795649 E b> 5 E Data differs at [28, 1]: E a> 1 E b> 5 E Data differs at [30, 1]: E a> 5 E b> 1 E Data differs at [65, 1]: E a> 5 E b> 1 E Data differs at [66, 1]: E a> 5 E b> 1 E Data differs at [67, 1]: E a> 5 E b> 1 E ... E 5961 different pixels found (13.08% different). E E Extension HDU 17 (ERR, 3): E E Data contains differences: E Data differs at [89, 1]: E a> 239.50731 E b> 246.01814 E Data differs at [90, 1]: E a> 108.53022 E b> 107.718636 E Data differs at [91, 1]: E a> 42.71162 E b> 42.914448 E Data differs at [92, 1]: E a> 15.748254 E b> 14.782429 E Data differs at [93, 1]: E a> 5.6530185 E b> 5.7710247 E Data differs at [94, 1]: E a> 2.874773 E b> 2.9838076 E Data differs at [95, 1]: E a> 1.515495 E b> 1.5497639 E Data differs at [96, 1]: E a> 0.75331247 E b> 0.7716013 E Data differs at [97, 1]: E a> 0.40976158 E b> 0.3974131 E Data differs at [98, 1]: E a> 0.33863994 E b> 0.35282147 E ... E 17659 different pixels found (38.75% different). E E Extension HDU 19 (VAR_POISSON, 3): E E Data contains differences: E Data differs at [89, 1]: E a> 53821.113 E b> 56879.93 E Data differs at [90, 1]: E a> 11154.925 E b> 11042.384 E Data differs at [91, 1]: E a> 1798.8871 E b> 1823.0869 E Data differs at [92, 1]: E a> 244.96977 E b> 215.16312 E Data differs at [93, 1]: E a> 31.496395 E b> 32.830643 E Data differs at [94, 1]: E a> 8.131156 E b> 8.765586 E Data differs at [95, 1]: E a> 2.2631826 E b> 2.3752425 E Data differs at [96, 1]: E a> 0.5587288 E b> 0.58819455 E Data differs at [97, 1]: E a> 0.1656143 E b> 0.15637957 E Data differs at [98, 1]: E a> 0.112855755 E b> 0.1227286 E ... E 17653 different pixels found (38.74% different). E E Extension HDU 20 (VAR_RNOISE, 3): E E Data contains differences: E Data differs at [89, 1]: E a> 3542.5764 E b> 3643.7988 E Data differs at [90, 1]: E a> 622.9277 E b> 560.7641 E Data differs at [91, 1]: E a> 25.387377 E b> 18.510715 E Data differs at [92, 1]: E a> 3.0291412 E b> 3.3567462 E Data differs at [93, 1]: E a> 0.46004888 E b> 0.47041282 E Data differs at [94, 1]: E a> 0.13299814 E b> 0.13722908 E Data differs at [95, 1]: E a> 0.033529703 E b> 0.026523259 E Data differs at [96, 1]: E a> 0.008739389 E b> 0.0070996303 E Data differs at [97, 1]: E a> 0.0022777675 E b> 0.0015548315 E Data differs at [98, 1]: E a> 0.0018196771 E b> 0.0017517891 E ... E 17485 different pixels found (38.37% different). E E Extension HDU 21 (VAR_FLAT, 3): E E Data contains differences: E Data differs at [89, 1]: E a> 0.060233466 E b> 1.2028182 E Data differs at [90, 1]: E a> 0.9562432 E b> 0.15874648 E Data differs at [91, 1]: E a> 0.0082276 E b> 0.052054167 E Data differs at [92, 1]: E a> 0.008553854 E b> 0.00036526716 E Data differs at [93, 1]: E a> 0.00017248475 E b> 0.0036787412 E Data differs at [94, 1]: E a> 0.00016593159 E b> 0.00029205868 E Data differs at [95, 1]: E a> 1.2531296e-05 E b> 2.3370512e-06 E Data differs at [96, 1]: E a> 1.1479423e-05 E b> 7.435147e-05 E Data differs at [103, 1]: E a> 7.233171e-05 E b> 5.279052e-10 E Data differs at [104, 1]: E a> 2.0314612e-06 E b> 0.0035732575 E ... E 13493 different pixels found (29.61% different). E E Extension HDU 22 (SCI, 4): E E Headers contain differences: E Headers have different number of cards: E a: 50 E b: 52 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword NAXIS2 has different values: E a> 255 E b> 257 E Keyword SLTSIZE2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 23 (DQ, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 24 (ERR, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 25 (WAVELENGTH, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 26 (VAR_POISSON, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 27 (VAR_RNOISE, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E Extension HDU 28 (VAR_FLAT, 4): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 255 E b> 257 E E Data contains differences: E Data dimensions differ: E a: 186 x 255 E b: 186 x 257 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f4842a42f10>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00104-x1d] | 0.21 | |
|
run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits'} suffix = 'x1d', source_id = 's00104' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_x1d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (EXTRACT1D, 1): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E E Data contains differences: E Column FLUX data differs in row 161: E a> nan E b> 0.02055506829163751 E Column FLUX data differs in row 162: E a> 0.020566550871851032 E b> 0.009067604615706314 E Column FLUX data differs in row 163: E a> 0.009072489957081147 E b> 0.0037622867952118596 E Column FLUX data differs in row 164: E a> 0.0037641753564277825 E b> 0.0014371262123989322 E Column FLUX data differs in row 165: E a> 0.001437808952700884 E b> 0.0006427779261091129 E Column FLUX data differs in row 166: E a> 0.0006430716156747743 E b> 0.00036997742474840866 E Column FLUX data differs in row 167: E a> 0.00037013865236702227 E b> 0.00019656917044116515 E Column FLUX data differs in row 168: E a> 0.00019664895703308365 E b> 9.840838855921807e-05 E Column FLUX data differs in row 169: E a> 9.844657628756582e-05 E b> 7.485421522527449e-05 E Column FLUX data differs in row 177: E a> 0.00010259910570628918 E b> 0.00011531181404241202 E ...668 additional difference(s) found. E ... E 678 different table data element(s) found (11.41% different). E E Extension HDU 2 (EXTRACT1D, 2): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E Keyword NAXIS2 has different values: E a> 329 E b> 331 E E Data contains differences: E Table rows differ: E a: 329 E b: 331 E No further data comparison performed. E E Extension HDU 3 (EXTRACT1D, 3): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E E Data contains differences: E Column FLUX data differs in row 156: E a> 0.07727562031030033 E b> 0.07723304687280258 E Column NPIXELS data differs in row 89: E a> 253.0 E ? ^ E b> 254.0 E ? ^ E Column NPIXELS data differs in row 102: E a> 251.0 E ? ^ E b> 252.0 E ? ^ E Column NPIXELS data differs in row 146: E a> 250.0 E ? ^ E b> 251.0 E ? ^ E Column SB_ERROR data differs in row 88: E a> 16.91110441985148 E b> 16.91261606116817 E Column SB_ERROR data differs in row 89: E a> 7.536648997547137 E b> 7.518632953218416 E Column SB_ERROR data differs in row 90: E a> 3.1066664117794707 E b> 3.1072979112598365 E Column SB_ERROR data differs in row 91: E a> 1.136964134279896 E b> 1.136820820343384 E Column SB_ERROR data differs in row 92: E a> 0.4257353952459227 E b> 0.4258406820652758 E Column SB_ERROR data differs in row 93: E a> 0.22981130276975484 E b> 0.229915106802338 E ...95 additional difference(s) found. E ... E 105 different table data element(s) found (3.28% different). E E Extension HDU 4 (EXTRACT1D, 4): E E Headers contain differences: E Headers have different number of cards: E a: 74 E b: 76 E Extra keyword 'SRCDEC' in b: -30.40915257066028 E Extra keyword 'SRCRA' in b: 3.612617565864074 E E Data contains differences: E Column FLUX data differs in row 88: E a> 0.06362001883711443 E b> 0.06369133476448503 E Column FLUX data differs in row 89: E a> 0.029826782742881017 E b> 0.02981598052410249 E Column NPIXELS data differs in row 88: E a> 249.0 E b> 251.0 E Column NPIXELS data differs in row 89: E a> 252.0 E ? ^ E b> 254.0 E ? ^ E Column NPIXELS data differs in row 90: E a> 250.0 E ? ^ E b> 252.0 E ? ^ E Column NPIXELS data differs in row 91: E a> 251.0 E ? ^ E b> 253.0 E ? ^ E Column NPIXELS data differs in row 92: E a> 254.0 E ? ^ E b> 256.0 E ? ^ E Column NPIXELS data differs in row 93: E a> 253.0 E ? ^ E b> 255.0 E ? ^ E Column NPIXELS data differs in row 94: E a> 255.0 E ? ^ E b> 257.0 E ? ^ E Column NPIXELS data differs in row 95: E a> 253.0 E ? ^ E b> 255.0 E ? ^ E ...239 additional difference(s) found. E ... E 249 different table data element(s) found (7.44% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f484276aac0>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec3[s00104-c1d] | 0.16 | |
|
run_nis_wfss_spec3 = None rtdata_module = {'input': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pyt...', 'truth_remote': 'jwst-pipeline/dev/truth/test_niriss_wfss/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits'} suffix = 'c1d', source_id = 's00104' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize('suffix', ['cal', 'x1d', 'c1d']) @pytest.mark.parametrize('source_id', ['s00015', 's00104']) def test_nis_wfss_spec3(run_nis_wfss_spec3, rtdata_module, suffix, source_id, fitsdiff_default_kwargs): """Regression test of the calwebb_spec3 pipeline applied to NIRISS WFSS data""" rtdata = rtdata_module rtdata.input = "jw01324-o001_20220629t171902_spec3_003_asn.json" output = "jw01324-o001_" + source_id + "_niriss_f115w-gr150c-gr150r_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_niriss_wfss/{output}") # Compare the results fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 5.1 E a: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits E b: /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/truth/jw01324-o001_s00104_niriss_f115w-gr150c-gr150r_c1d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 1 (COMBINE1D, 1): E E Headers contain differences: E Keyword NAXIS2 has different values: E a> 408 E b> 411 E E Data contains differences: E Table rows differ: E a: 408 E b: 411 E No further data comparison performed. E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f4842574880>.identical /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py:89: AssertionError | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_niriss_ami3_exp[022-c1014_ami] | 101.93 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-12-04 03:36:08,123 - stpipe.Ami3Pipeline - INFO - Ami3Pipeline instance created. 2022-12-04 03:36:08,124 - stpipe.Ami3Pipeline.ami_analyze - INFO - AmiAnalyzeStep instance created. 2022-12-04 03:36:08,125 - stpipe.Ami3Pipeline.ami_average - INFO - AmiAverageStep instance created. 2022-12-04 03:36:08,126 - stpipe.Ami3Pipeline.ami_normalize - INFO - AmiNormalizeStep instance created. 2022-12-04 03:36:08,306 - stpipe.Ami3Pipeline - INFO - Step Ami3Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793-c1014_20191210t203450_ami3_001_asn.json',). 2022-12-04 03:36:08,309 - stpipe.Ami3Pipeline - INFO - Step Ami3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'save_averages': True, 'steps': {'ami_analyze': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'}, 'ami_average': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'}, 'ami_normalize': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'}}} 2022-12-04 03:36:08,575 - stpipe.Ami3Pipeline - INFO - Prefetching reference files for dataset: 'jw00793022001_03102_00002_nis_cal.fits' reftypes = ['throughput'] 2022-12-04 03:36:08,583 - stpipe.Ami3Pipeline - INFO - Prefetch for THROUGHPUT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits'. 2022-12-04 03:36:08,585 - stpipe.Ami3Pipeline - INFO - Starting calwebb_ami3 2022-12-04 03:36:08,799 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00002_nis_cal.fits',). 2022-12-04 03:36:08,800 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} 2022-12-04 03:36:08,800 - stpipe.Ami3Pipeline.ami_analyze - INFO - Oversampling factor = 3 2022-12-04 03:36:08,800 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial rotation guess = 1.49 deg 2022-12-04 03:36:08,800 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for psf offset = [0.0, 0.0] 2022-12-04 03:36:09,084 - stpipe.Ami3Pipeline.ami_analyze - INFO - Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits 2022-12-04 03:36:09,185 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] 2022-12-04 03:36:23,961 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze done 2022-12-04 03:36:24,041 - stpipe.Ami3Pipeline - INFO - Saved model in jw00793022001_03102_00002_nis_c1014_ami.fits 2022-12-04 03:36:24,278 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00001_nis_cal.fits',). 2022-12-04 03:36:24,279 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} 2022-12-04 03:36:24,279 - stpipe.Ami3Pipeline.ami_analyze - INFO - Oversampling factor = 3 2022-12-04 03:36:24,279 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial rotation guess = 1.49 deg 2022-12-04 03:36:24,279 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for psf offset = [0.0, 0.0] 2022-12-04 03:36:24,538 - stpipe.Ami3Pipeline.ami_analyze - INFO - Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits 2022-12-04 03:36:24,626 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] 2022-12-04 03:36:39,645 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze done 2022-12-04 03:36:39,727 - stpipe.Ami3Pipeline - INFO - Saved model in jw00793022001_03102_00001_nis_c1014_ami.fits 2022-12-04 03:36:39,931 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00003_nis_cal.fits',). 2022-12-04 03:36:39,933 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} 2022-12-04 03:36:39,933 - stpipe.Ami3Pipeline.ami_analyze - INFO - Oversampling factor = 3 2022-12-04 03:36:39,933 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial rotation guess = 1.49 deg 2022-12-04 03:36:39,933 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for psf offset = [0.0, 0.0] 2022-12-04 03:36:40,202 - stpipe.Ami3Pipeline.ami_analyze - INFO - Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits 2022-12-04 03:36:40,294 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] 2022-12-04 03:36:55,637 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze done 2022-12-04 03:36:55,727 - stpipe.Ami3Pipeline - INFO - Saved model in jw00793022001_03102_00003_nis_c1014_ami.fits 2022-12-04 03:36:55,917 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00002_nis_cal.fits',). 2022-12-04 03:36:55,918 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} 2022-12-04 03:36:55,918 - stpipe.Ami3Pipeline.ami_analyze - INFO - Oversampling factor = 3 2022-12-04 03:36:55,918 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial rotation guess = 1.49 deg 2022-12-04 03:36:55,918 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for psf offset = [0.0, 0.0] 2022-12-04 03:36:56,183 - stpipe.Ami3Pipeline.ami_analyze - INFO - Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits 2022-12-04 03:36:56,273 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] 2022-12-04 03:37:11,723 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze done 2022-12-04 03:37:11,804 - stpipe.Ami3Pipeline - INFO - Saved model in jw00793025001_03102_00002_nis_c1014_ami.fits 2022-12-04 03:37:12,044 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00003_nis_cal.fits',). 2022-12-04 03:37:12,045 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} 2022-12-04 03:37:12,046 - stpipe.Ami3Pipeline.ami_analyze - INFO - Oversampling factor = 3 2022-12-04 03:37:12,046 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial rotation guess = 1.49 deg 2022-12-04 03:37:12,046 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for psf offset = [0.0, 0.0] 2022-12-04 03:37:12,310 - stpipe.Ami3Pipeline.ami_analyze - INFO - Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits 2022-12-04 03:37:12,402 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] 2022-12-04 03:37:27,621 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze done 2022-12-04 03:37:27,715 - stpipe.Ami3Pipeline - INFO - Saved model in jw00793025001_03102_00003_nis_c1014_ami.fits 2022-12-04 03:37:27,906 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00001_nis_cal.fits',). 2022-12-04 03:37:27,907 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} 2022-12-04 03:37:27,907 - stpipe.Ami3Pipeline.ami_analyze - INFO - Oversampling factor = 3 2022-12-04 03:37:27,907 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial rotation guess = 1.49 deg 2022-12-04 03:37:27,907 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for psf offset = [0.0, 0.0] 2022-12-04 03:37:28,204 - stpipe.Ami3Pipeline.ami_analyze - INFO - Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits 2022-12-04 03:37:28,300 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] 2022-12-04 03:37:43,352 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze done 2022-12-04 03:37:43,431 - stpipe.Ami3Pipeline - INFO - Saved model in jw00793025001_03102_00001_nis_c1014_ami.fits 2022-12-04 03:37:43,575 - stpipe.Ami3Pipeline.ami_average - INFO - Step ami_average running with args ([<AmiLgModel(79, 79) from jw00793025001_03102_00002_nis_c1014_ami.fits>, <AmiLgModel(79, 79) from jw00793025001_03102_00003_nis_c1014_ami.fits>, <AmiLgModel(79, 79) from jw00793025001_03102_00001_nis_c1014_ami.fits>],). 2022-12-04 03:37:43,576 - stpipe.Ami3Pipeline.ami_average - INFO - Step ami_average parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'} 2022-12-04 03:37:43,620 - stpipe.Ami3Pipeline.ami_average - INFO - Accumulate data from <AmiLgModel(79, 79) from jw00793025001_03102_00002_nis_c1014_ami.fits> 2022-12-04 03:37:43,626 - stpipe.Ami3Pipeline.ami_average - INFO - Accumulate data from <AmiLgModel(79, 79) from jw00793025001_03102_00003_nis_c1014_ami.fits> 2022-12-04 03:37:43,633 - stpipe.Ami3Pipeline.ami_average - INFO - Accumulate data from <AmiLgModel(79, 79) from jw00793025001_03102_00001_nis_c1014_ami.fits> 2022-12-04 03:37:43,646 - stpipe.Ami3Pipeline.ami_average - INFO - Step ami_average done 2022-12-04 03:37:43,647 - stpipe.Ami3Pipeline - INFO - Blending metadata for averaged psf 2022-12-04 03:37:44,587 - stpipe.Ami3Pipeline - INFO - Saved model in jw00793-c1014_t005_niriss_f480m-nrm-sub80_psf-amiavg.fits 2022-12-04 03:37:44,712 - stpipe.Ami3Pipeline.ami_average - INFO - Step ami_average running with args ([<AmiLgModel(79, 79) from jw00793022001_03102_00002_nis_c1014_ami.fits>, <AmiLgModel(79, 79) from jw00793022001_03102_00001_nis_c1014_ami.fits>, <AmiLgModel(79, 79) from jw00793022001_03102_00003_nis_c1014_ami.fits>],). 2022-12-04 03:37:44,713 - stpipe.Ami3Pipeline.ami_average - INFO - Step ami_average parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_average', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'} 2022-12-04 03:37:44,757 - stpipe.Ami3Pipeline.ami_average - INFO - Accumulate data from <AmiLgModel(79, 79) from jw00793022001_03102_00002_nis_c1014_ami.fits> 2022-12-04 03:37:44,762 - stpipe.Ami3Pipeline.ami_average - INFO - Accumulate data from <AmiLgModel(79, 79) from jw00793022001_03102_00001_nis_c1014_ami.fits> 2022-12-04 03:37:44,770 - stpipe.Ami3Pipeline.ami_average - INFO - Accumulate data from <AmiLgModel(79, 79) from jw00793022001_03102_00003_nis_c1014_ami.fits> 2022-12-04 03:37:44,781 - stpipe.Ami3Pipeline.ami_average - INFO - Step ami_average done 2022-12-04 03:37:44,783 - stpipe.Ami3Pipeline - INFO - Blending metadata for averaged target 2022-12-04 03:37:45,721 - stpipe.Ami3Pipeline - INFO - Saved model in jw00793-c1014_t005_niriss_f480m-nrm-sub80_amiavg.fits 2022-12-04 03:37:45,856 - stpipe.Ami3Pipeline.ami_normalize - INFO - Step ami_normalize running with args (<AmiLgModel(79, 79) from jw00793-c1014_t005_niriss_f480m-nrm-sub80_amiavg.fits>, <AmiLgModel(79, 79) from jw00793-c1014_t005_niriss_f480m-nrm-sub80_psf-amiavg.fits>). 2022-12-04 03:37:45,857 - stpipe.Ami3Pipeline.ami_normalize - INFO - Step ami_normalize parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'} 2022-12-04 03:37:45,967 - stpipe.Ami3Pipeline.ami_normalize - INFO - Step ami_normalize done 2022-12-04 03:37:45,969 - stpipe.Ami3Pipeline - INFO - Blending metadata for PSF normalized target 2022-12-04 03:37:47,147 - stpipe.Ami3Pipeline - INFO - Saved model in jw00793-c1014_t005_niriss_f480m-nrm-sub80_aminorm.fits 2022-12-04 03:37:47,147 - stpipe.Ami3Pipeline - INFO - ... ending calwebb_ami3 2022-12-04 03:37:47,147 - stpipe.Ami3Pipeline - INFO - Step Ami3Pipeline done -------------------------------Captured log setup------------------------------- INFO stpipe.Ami3Pipeline:step.py:366 Ami3Pipeline instance created. INFO stpipe.Ami3Pipeline.ami_analyze:step.py:366 AmiAnalyzeStep instance created. INFO stpipe.Ami3Pipeline.ami_average:step.py:366 AmiAverageStep instance created. INFO stpipe.Ami3Pipeline.ami_normalize:step.py:366 AmiNormalizeStep instance created. INFO stpipe.Ami3Pipeline:step.py:430 Step Ami3Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793-c1014_20191210t203450_ami3_001_asn.json',). INFO stpipe.Ami3Pipeline:step.py:434 Step Ami3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'save_averages': True, 'steps': {'ami_analyze': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'}, 'ami_average': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'}, 'ami_normalize': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'}}} INFO stpipe.Ami3Pipeline:pipeline.py:358 Prefetching reference files for dataset: 'jw00793022001_03102_00002_nis_cal.fits' reftypes = ['throughput'] INFO stpipe.Ami3Pipeline:pipeline.py:366 Prefetch for THROUGHPUT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits'. INFO stpipe.Ami3Pipeline:calwebb_ami3.py:43 Starting calwebb_ami3 INFO stpipe.Ami3Pipeline:calwebb_ami3.py:43 Starting calwebb_ami3 DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00002_nis_cal.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00002_nis_cal.fits INFO stpipe.Ami3Pipeline.ami_analyze:step.py:430 Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00002_nis_cal.fits',). INFO stpipe.Ami3Pipeline.ami_analyze:step.py:434 Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:45 Oversampling factor = 3 INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:46 Initial rotation guess = 1.49 deg INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:47 Initial values to use for psf offset = [0.0, 0.0] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:61 Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22371.59927505-2.76718212e-14j 22605.06260964+1.06884308e-13j 19489.54412318+2.24236577e-13j ... 17094.22375202-1.91782617e-13j 17636.58133512-4.56923395e-13j 18839.94985284+3.38484322e-14j] [21171.39566015+1.35353316e-13j 20900.19397463+1.08731142e-13j 18049.14155548+2.14402401e-13j ... 16355.31456337-1.08159930e-13j 17519.14292342-2.41783423e-13j 18811.70478772+1.74015714e-13j] [19061.40542851+2.72088395e-13j 18362.62372315+1.43521668e-13j 16593.38479618+2.18130350e-13j ... 15924.16747836+4.80255563e-14j 16947.42734 -4.16999835e-14j 18030.040549 +2.30357908e-13j] ... [17043.5817957 -2.49347327e-13j 17660.47264731+1.24799428e-13j 17120.97783055-2.98466640e-14j ... 14505.28124145-5.48048834e-13j 15058.96782657-7.71819395e-13j 15823.04362199-3.61997004e-15j] [18361.79710803+3.33492937e-14j 18627.9752801 -5.18775848e-14j 17888.71433016-1.30806151e-14j ... 15238.43960275-2.33142607e-13j 15584.85646548-3.43377324e-13j 16515.44487529+1.71950869e-14j] [20334.06059077-2.58229111e-13j 20548.54525871-6.00227573e-14j 18745.65133629+1.81639619e-13j ... 16812.08485826-8.05861163e-13j 16701.69731463-6.31936970e-13j 17448.93918347-4.16451086e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22371.59927505-2.76718212e-14j 22605.06260964+1.06884308e-13j 19489.54412318+2.24236577e-13j ... 17094.22375202-1.91782617e-13j 17636.58133512-4.56923395e-13j 18839.94985284+3.38484322e-14j] [21171.39566015+1.35353316e-13j 20900.19397463+1.08731142e-13j 18049.14155548+2.14402401e-13j ... 16355.31456337-1.08159930e-13j 17519.14292342-2.41783423e-13j 18811.70478772+1.74015714e-13j] [19061.40542851+2.72088395e-13j 18362.62372315+1.43521668e-13j 16593.38479618+2.18130350e-13j ... 15924.16747836+4.80255563e-14j 16947.42734 -4.16999835e-14j 18030.040549 +2.30357908e-13j] ... [17043.5817957 -2.49347327e-13j 17660.47264731+1.24799428e-13j 17120.97783055-2.98466640e-14j ... 14505.28124145-5.48048834e-13j 15058.96782657-7.71819395e-13j 15823.04362199-3.61997004e-15j] [18361.79710803+3.33492937e-14j 18627.9752801 -5.18775848e-14j 17888.71433016-1.30806151e-14j ... 15238.43960275-2.33142607e-13j 15584.85646548-3.43377324e-13j 16515.44487529+1.71950869e-14j] [20334.06059077-2.58229111e-13j 20548.54525871-6.00227573e-14j 18745.65133629+1.81639619e-13j ... 16812.08485826-8.05861163e-13j 16701.69731463-6.31936970e-13j 17448.93918347-4.16451086e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (7000293.971044957-2.5849394142282115e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (7000293.971044957-2.5849394142282115e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 7000294.06640906: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 7000294.06640906: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 7000293.971044957: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 7000293.971044957: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000136228713: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000136228713: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22383.32060551-6.90714338e-14j 22614.44242563+1.77956232e-13j 19481.22421833+1.66826798e-13j ... 17074.51004477-9.40278538e-14j 17609.82444544-2.08716372e-13j 18822.92964688-4.79123175e-13j] [21189.22200292+1.17913406e-13j 20885.08556796+2.67695132e-13j 18008.06552858+2.14582481e-13j ... 16382.4104003 -3.09787633e-14j 17546.9769017 -4.13725515e-14j 18833.42664339-3.86666641e-13j] [19065.6866291 +3.61695100e-13j 18355.97869651+3.38938570e-13j 16586.49764253+4.85738362e-13j ... 15910.09192159+8.13873841e-14j 16980.48960359+1.53771446e-13j 18058.07577023+1.28168820e-13j] ... [17027.61914674-9.52494151e-14j 17636.0096749 -2.01666216e-13j 17131.34653746-4.40689690e-13j ... 14495.88985021-2.63135669e-13j 15052.34982359-5.17190624e-13j 15806.49426812-2.82830840e-13j] [18356.12518843-2.72992089e-13j 18632.60965044+4.79165967e-13j 17901.27754996-2.15132670e-14j ... 15284.7074298 -5.69845926e-13j 15623.64398707-4.38338306e-13j 16507.89332465-1.02757569e-13j] [20318.19339019+6.79338944e-13j 20562.58688826+7.18079622e-13j 18770.05662399+7.31580352e-13j ... 16817.21369988-3.79304217e-13j 16692.00534072+2.72760667e-13j 17411.68274689-1.09665996e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22383.32060551-6.90714338e-14j 22614.44242563+1.77956232e-13j 19481.22421833+1.66826798e-13j ... 17074.51004477-9.40278538e-14j 17609.82444544-2.08716372e-13j 18822.92964688-4.79123175e-13j] [21189.22200292+1.17913406e-13j 20885.08556796+2.67695132e-13j 18008.06552858+2.14582481e-13j ... 16382.4104003 -3.09787633e-14j 17546.9769017 -4.13725515e-14j 18833.42664339-3.86666641e-13j] [19065.6866291 +3.61695100e-13j 18355.97869651+3.38938570e-13j 16586.49764253+4.85738362e-13j ... 15910.09192159+8.13873841e-14j 16980.48960359+1.53771446e-13j 18058.07577023+1.28168820e-13j] ... [17027.61914674-9.52494151e-14j 17636.0096749 -2.01666216e-13j 17131.34653746-4.40689690e-13j ... 14495.88985021-2.63135669e-13j 15052.34982359-5.17190624e-13j 15806.49426812-2.82830840e-13j] [18356.12518843-2.72992089e-13j 18632.60965044+4.79165967e-13j 17901.27754996-2.15132670e-14j ... 15284.7074298 -5.69845926e-13j 15623.64398707-4.38338306e-13j 16507.89332465-1.02757569e-13j] [20318.19339019+6.79338944e-13j 20562.58688826+7.18079622e-13j 18770.05662399+7.31580352e-13j ... 16817.21369988-3.79304217e-13j 16692.00534072+2.72760667e-13j 17411.68274689-1.09665996e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6999560.820811985-5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6999560.820811985-5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6999560.916166098: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6999560.916166098: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6999560.820811985: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6999560.820811985: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000136228708: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000136228708: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22392.50264257-4.18954976e-14j 22619.40780265+1.47271546e-13j 19474.83345083+2.91541936e-13j ... 17057.71212158-3.46436488e-14j 17589.28100839-1.98055785e-13j 18810.04889048-2.71021666e-13j] [21204.04130124+1.92219077e-13j 20869.91967284+1.96454121e-13j 17971.84640064+3.65320898e-13j ... 16413.67040799+3.81969811e-14j 17581.58030339+1.26556804e-13j 18856.87590384-1.35874454e-13j] [19067.47681837+4.44382187e-13j 18350.96000437+3.07143662e-13j 16584.88027987+6.16559726e-13j ... 15894.23217201+2.09605417e-13j 17007.18609681+2.01624504e-13j 18079.4907017 -1.55558472e-13j] ... [17008.05276287-5.07462016e-13j 17614.57639469-1.20241179e-13j 17138.66505873-4.49823389e-13j ... 14481.52693859+2.72976364e-13j 15048.76865908-8.28704786e-14j 15787.5048436 +6.09167597e-14j] [18348.78497473-5.12870647e-13j 18637.06701208+2.75469519e-13j 17908.92030864-6.68329193e-13j ... 15331.87838137-1.42617020e-13j 15663.31939066+1.28874947e-13j 16502.37877359-8.55732697e-14j] [20304.80969587-3.40687975e-13j 20575.35780762-3.41295854e-13j 18792.69117383-2.73882988e-13j ... 16818.37506187-6.61639832e-14j 16681.05790224+1.02372484e-13j 17379.48081849-3.76163800e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22392.50264257-4.18954976e-14j 22619.40780265+1.47271546e-13j 19474.83345083+2.91541936e-13j ... 17057.71212158-3.46436488e-14j 17589.28100839-1.98055785e-13j 18810.04889048-2.71021666e-13j] [21204.04130124+1.92219077e-13j 20869.91967284+1.96454121e-13j 17971.84640064+3.65320898e-13j ... 16413.67040799+3.81969811e-14j 17581.58030339+1.26556804e-13j 18856.87590384-1.35874454e-13j] [19067.47681837+4.44382187e-13j 18350.96000437+3.07143662e-13j 16584.88027987+6.16559726e-13j ... 15894.23217201+2.09605417e-13j 17007.18609681+2.01624504e-13j 18079.4907017 -1.55558472e-13j] ... [17008.05276287-5.07462016e-13j 17614.57639469-1.20241179e-13j 17138.66505873-4.49823389e-13j ... 14481.52693859+2.72976364e-13j 15048.76865908-8.28704786e-14j 15787.5048436 +6.09167597e-14j] [18348.78497473-5.12870647e-13j 18637.06701208+2.75469519e-13j 17908.92030864-6.68329193e-13j ... 15331.87838137-1.42617020e-13j 15663.31939066+1.28874947e-13j 16502.37877359-8.55732697e-14j] [20304.80969587-3.40687975e-13j 20575.35780762-3.41295854e-13j 18792.69117383-2.73882988e-13j ... 16818.37506187-6.61639832e-14j 16681.05790224+1.02372484e-13j 17379.48081849-3.76163800e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6999096.733368117-1.0501316370302109e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6999096.733368117-1.0501316370302109e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6999096.82871591: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6999096.82871591: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6999096.733368117: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6999096.733368117: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000013622871: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000013622871: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22398.13987418+1.72559870e-14j 22618.48203879+2.89572136e-13j 19469.48221762+3.59795033e-13j ... 17045.16473879+1.77225773e-13j 17576.17629827+5.85555864e-15j 18801.18267199-4.04587909e-14j] [21215.7963619 +1.54598225e-13j 20855.57138237+4.06323968e-13j 17941.00286696+3.47075654e-13j ... 16447.72847993+2.73088999e-13j 17621.20430495+2.76230685e-13j 18881.10977256+1.34502994e-13j] [19067.56722623+3.32559326e-13j 18349.02983014+6.22639043e-13j 16588.60003797+3.51468361e-13j ... 15876.42924952+2.92688967e-13j 17026.06926513+5.28770603e-13j 18094.78976438+6.31226139e-13j] ... [16982.82109016-2.74783514e-14j 17594.97677837-1.51817729e-13j 17143.77652486+2.70992590e-13j ... 14463.62320598-4.66552325e-14j 15047.21518662+8.18817578e-14j 15767.36132507-3.87105441e-14j] [18340.11111127-1.72007090e-13j 18641.75146636-2.60795162e-13j 17913.58773079-2.20416790e-13j ... 15381.13241155-1.38782920e-13j 15702.00706748+2.02890197e-13j 16499.06910268+1.90569145e-13j] [20295.22618359+4.32394567e-13j 20587.32602755-1.01310946e-13j 18813.47644146+4.91380225e-13j ... 16816.09360553+1.58856320e-13j 16669.05125017+3.84567774e-13j 17353.08076917+5.22895185e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22398.13987418+1.72559870e-14j 22618.48203879+2.89572136e-13j 19469.48221762+3.59795033e-13j ... 17045.16473879+1.77225773e-13j 17576.17629827+5.85555864e-15j 18801.18267199-4.04587909e-14j] [21215.7963619 +1.54598225e-13j 20855.57138237+4.06323968e-13j 17941.00286696+3.47075654e-13j ... 16447.72847993+2.73088999e-13j 17621.20430495+2.76230685e-13j 18881.10977256+1.34502994e-13j] [19067.56722623+3.32559326e-13j 18349.02983014+6.22639043e-13j 16588.60003797+3.51468361e-13j ... 15876.42924952+2.92688967e-13j 17026.06926513+5.28770603e-13j 18094.78976438+6.31226139e-13j] ... [16982.82109016-2.74783514e-14j 17594.97677837-1.51817729e-13j 17143.77652486+2.70992590e-13j ... 14463.62320598-4.66552325e-14j 15047.21518662+8.18817578e-14j 15767.36132507-3.87105441e-14j] [18340.11111127-1.72007090e-13j 18641.75146636-2.60795162e-13j 17913.58773079-2.20416790e-13j ... 15381.13241155-1.38782920e-13j 15702.00706748+2.02890197e-13j 16499.06910268+1.90569145e-13j] [20295.22618359+4.32394567e-13j 20587.32602755-1.01310946e-13j 18813.47644146+4.91380225e-13j ... 16816.09360553+1.58856320e-13j 16669.05125017+3.84567774e-13j 17353.08076917+5.22895185e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6998954.623659485-1.1309109937248425e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6998954.623659485-1.1309109937248425e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6998954.719005342: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6998954.719005342: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6998954.623659485: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6998954.623659485: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000013622871: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000013622871: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22399.51090297-4.89647584e-14j 22610.55631347+2.11623761e-13j 19464.3034593 +2.57083424e-13j ... 17037.90247338-1.53801883e-13j 17571.41213423-3.30282026e-13j 18796.10198817-2.22129609e-13j] [21224.63056986+6.98466765e-14j 20842.77085739+3.35484420e-13j 17915.79599181+3.41114467e-13j ... 16482.85610235-1.50853040e-13j 17663.75614242-9.35782846e-14j 18905.12114487-2.00431000e-13j] [19066.76238027+3.72919991e-13j 18351.50072186+4.11463906e-13j 16597.09257821+4.32498662e-13j ... 15856.63146484-1.36038314e-13j 17036.49099481+5.60755864e-14j 18104.77135608-2.89508023e-14j] ... [16950.77618091-1.63825321e-13j 17575.52494023+1.18988092e-13j 17147.57087889+6.57183555e-13j ... 14445.05335764+6.79862903e-15j 15046.4173896 -2.79105823e-13j 15747.32028395-1.04085021e-13j] [18330.59772742-1.78785137e-14j 18646.79988847-1.99683920e-13j 17917.31144257+2.40550372e-13j ... 15433.54133088-5.16613645e-14j 15738.01574452-7.27102844e-14j 16497.64812921-3.99015949e-13j] [20290.47966719-1.45302733e-14j 20598.9488603 +3.36288482e-13j 18832.51156894+5.67012065e-13j ... 16811.20060337-5.00503537e-13j 16656.7181362 -4.85199598e-13j 17332.92253654-3.40398243e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22399.51090297-4.89647584e-14j 22610.55631347+2.11623761e-13j 19464.3034593 +2.57083424e-13j ... 17037.90247338-1.53801883e-13j 17571.41213423-3.30282026e-13j 18796.10198817-2.22129609e-13j] [21224.63056986+6.98466765e-14j 20842.77085739+3.35484420e-13j 17915.79599181+3.41114467e-13j ... 16482.85610235-1.50853040e-13j 17663.75614242-9.35782846e-14j 18905.12114487-2.00431000e-13j] [19066.76238027+3.72919991e-13j 18351.50072186+4.11463906e-13j 16597.09257821+4.32498662e-13j ... 15856.63146484-1.36038314e-13j 17036.49099481+5.60755864e-14j 18104.77135608-2.89508023e-14j] ... [16950.77618091-1.63825321e-13j 17575.52494023+1.18988092e-13j 17147.57087889+6.57183555e-13j ... 14445.05335764+6.79862903e-15j 15046.4173896 -2.79105823e-13j 15747.32028395-1.04085021e-13j] [18330.59772742-1.78785137e-14j 18646.79988847-1.99683920e-13j 17917.31144257+2.40550372e-13j ... 15433.54133088-5.16613645e-14j 15738.01574452-7.27102844e-14j 16497.64812921-3.99015949e-13j] [20290.47966719-1.45302733e-14j 20598.9488603 +3.36288482e-13j 18832.51156894+5.67012065e-13j ... 16811.20060337-5.00503537e-13j 16656.7181362 -4.85199598e-13j 17332.92253654-3.40398243e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6999083.588299235-1.6155871338926322e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6999083.588299235-1.6155871338926322e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6999083.68364685: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6999083.68364685: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6999083.588299235: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6999083.588299235: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000136228713: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000136228713: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22396.23410642-3.99616248e-14j 22595.02410522+1.71874130e-13j 19458.52395166+3.60092809e-13j ... 17036.47824215+7.18619190e-15j 17575.42009823-2.00582023e-13j 18794.48298069-1.49377470e-13j] [21230.86271408+2.52648843e-13j 20832.03345863+2.37163546e-13j 17896.2798808 +3.85945550e-13j ... 16517.17940475+1.94017734e-13j 17707.02399847+3.99750232e-15j 18927.95222129+1.69462621e-14j] [19065.83850972+2.93105283e-13j 18359.32498714+2.45148849e-13j 16609.27592807+5.91019198e-13j ... 15834.90088959+1.91483214e-13j 17038.59934845+3.13451237e-13j 18110.41614203+1.22627171e-13j] ... [16911.7823669 -1.79930429e-13j 17554.31937672+8.72618538e-14j 17150.85522805-3.03481364e-13j ... 14429.71360604-1.27785499e-13j 15045.13665125+1.84088175e-14j 15728.30552712+1.60446770e-13j] [18320.80477427-2.79181900e-13j 18652.10058405+4.28716095e-13j 17921.95765378+5.81121460e-14j ... 15489.85312706+6.85301963e-14j 15770.16514613-3.74317885e-13j 16497.36384951-1.24082927e-13j] [20291.2183931 -4.51473141e-13j 20610.63940728+4.52768654e-13j 18850.03570772+1.05336460e-12j ... 16804.73501752-3.51465489e-13j 16645.29321695-5.00959742e-13j 17319.14306637+3.86344369e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22396.23410642-3.99616248e-14j 22595.02410522+1.71874130e-13j 19458.52395166+3.60092809e-13j ... 17036.47824215+7.18619190e-15j 17575.42009823-2.00582023e-13j 18794.48298069-1.49377470e-13j] [21230.86271408+2.52648843e-13j 20832.03345863+2.37163546e-13j 17896.2798808 +3.85945550e-13j ... 16517.17940475+1.94017734e-13j 17707.02399847+3.99750232e-15j 18927.95222129+1.69462621e-14j] [19065.83850972+2.93105283e-13j 18359.32498714+2.45148849e-13j 16609.27592807+5.91019198e-13j ... 15834.90088959+1.91483214e-13j 17038.59934845+3.13451237e-13j 18110.41614203+1.22627171e-13j] ... [16911.7823669 -1.79930429e-13j 17554.31937672+8.72618538e-14j 17150.85522805-3.03481364e-13j ... 14429.71360604-1.27785499e-13j 15045.13665125+1.84088175e-14j 15728.30552712+1.60446770e-13j] [18320.80477427-2.79181900e-13j 18652.10058405+4.28716095e-13j 17921.95765378+5.81121460e-14j ... 15489.85312706+6.85301963e-14j 15770.16514613-3.74317885e-13j 16497.36384951-1.24082927e-13j] [20291.2183931 -4.51473141e-13j 20610.63940728+4.52768654e-13j 18850.03570772+1.05336460e-12j ... 16804.73501752-3.51465489e-13j 16645.29321695-5.00959742e-13j 17319.14306637+3.86344369e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6999424.162248155+1.6155871338926322e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6999424.162248155+1.6155871338926322e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6999424.257600409: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6999424.257600409: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6999424.162248155: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6999424.162248155: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000136228713: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000136228713: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.47502736+0.j -0.45281603+0.00285263j 0.39134665-0.00510186j ... -0.30454036-0.00636113j 0.39134665+0.00510186j -0.45281603-0.00285263j] [-0.45214672-0.00966206j 0.4305781 +0.00638882j -0.37170065-0.00282064j ... 0.29007714+0.01201679j -0.37289953-0.01272582j 0.43132586+0.01192808j] [ 0.38889965+0.01689787j -0.36985027-0.01348748j 0.3186447 +0.00907117j ... -0.24928227-0.01582752j 0.32091505+0.01810401j -0.37124885-0.01854286j] ... [-0.29976205+0.0201354j 0.28646369-0.02123433j -0.24770819+0.02003377j ... 0.18897108-0.00746242j -0.24460861+0.01238246j 0.28459262-0.01694184j] [ 0.38889965-0.01689787j -0.37124885+0.01854286j 0.32091505-0.01810401j ... -0.24696947+0.00458865j 0.3186447 -0.00907117j -0.36985027+0.01348748j] [-0.45214672+0.00966206j 0.43132586-0.01192808j -0.37289953+0.01272582j ... 0.28889346+0.00032829j -0.37170065+0.00282064j 0.4305781 -0.00638882j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22388.29402021-7.29172012e-14j 22571.87325019+1.60319269e-13j 19451.54008568+2.57559330e-13j ... 17040.8712539 -3.63475005e-13j 17588.07769456-1.17637357e-13j 18795.93825653-2.07310578e-13j] [21234.94060166+2.45134521e-14j 20823.61358519+2.90429304e-13j 17882.35577293+3.12098078e-13j ... 16548.91253944-2.28577661e-13j 17748.90186496+1.66659024e-13j 18948.80089376+1.44251281e-13j] [19065.50002572-2.85082802e-14j 18372.91694476+2.95766478e-13j 16623.7474086 +6.25043152e-13j ... 15811.37740821-2.23586904e-13j 17033.2351342 +2.42630014e-13j 18112.77638266+4.57713014e-13j] ... [16866.65932169+4.94072218e-13j 17529.55030018-3.44030367e-13j 17154.25050362+3.83956415e-13j ... 14421.89786266+4.20131881e-13j 15042.49927168-3.49553531e-13j 15710.69960018-3.44667627e-13j] [18311.24372545+2.41798239e-13j 18657.34382895-2.39777532e-14j 17929.00889146-3.02818721e-13j ... 15550.31395112-1.69144824e-13j 15798.04184944-6.36326558e-15j 16497.16239155-1.12131882e-13j] [20297.61902956-1.50092047e-13j 20622.73494955-1.02007424e-13j 18866.37699966+8.70414788e-13j ... 16797.79952997+1.04020277e-14j 16636.37422358+4.12207367e-13j 17311.60045184-1.48037859e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[22388.29402021-7.29172012e-14j 22571.87325019+1.60319269e-13j 19451.54008568+2.57559330e-13j ... 17040.8712539 -3.63475005e-13j 17588.07769456-1.17637357e-13j 18795.93825653-2.07310578e-13j] [21234.94060166+2.45134521e-14j 20823.61358519+2.90429304e-13j 17882.35577293+3.12098078e-13j ... 16548.91253944-2.28577661e-13j 17748.90186496+1.66659024e-13j 18948.80089376+1.44251281e-13j] [19065.50002572-2.85082802e-14j 18372.91694476+2.95766478e-13j 16623.7474086 +6.25043152e-13j ... 15811.37740821-2.23586904e-13j 17033.2351342 +2.42630014e-13j 18112.77638266+4.57713014e-13j] ... [16866.65932169+4.94072218e-13j 17529.55030018-3.44030367e-13j 17154.25050362+3.83956415e-13j ... 14421.89786266+4.20131881e-13j 15042.49927168-3.49553531e-13j 15710.69960018-3.44667627e-13j] [18311.24372545+2.41798239e-13j 18657.34382895-2.39777532e-14j 17929.00889146-3.02818721e-13j ... 15550.31395112-1.69144824e-13j 15798.04184944-6.36326558e-15j 16497.16239155-1.12131882e-13j] [20297.61902956-1.50092047e-13j 20622.73494955-1.02007424e-13j 18866.37699966+8.70414788e-13j ... 16797.79952997+1.04020277e-14j 16636.37422358+4.12207367e-13j 17311.60045184-1.48037859e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 38.00219: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (7000123.591829778+5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (7000123.591829778+5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 7000123.68719156: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 7000123.68719156: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 7000123.591829778: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 7000123.591829778: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000136228713: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000136228713: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=40, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=40, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.08462057455301698, -0.27314576780967986) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.08462057455301698, -0.27314576780967986) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00096528 0.00094171 0.00091816 ... 0.00109729 0.00112323 0.00114912] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00096528 0.00094171 0.00091816 ... 0.00109729 0.00112323 0.00114912] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0009616 0.00093781 0.00091405 ... 0.00108933 0.00111548 0.00114159] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0009616 0.00093781 0.00091405 ... 0.00108933 0.00111548 0.00114159] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0009575 0.0009335 0.00090953 ... 0.00108091 0.00110726 0.00113359] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0009575 0.0009335 0.00090953 ... 0.00108091 0.00110726 0.00113359] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0012206 0.00119587 0.00117102 ... 0.00088828 0.0009109 0.00093354] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0012206 0.00119587 0.00117102 ... 0.00088828 0.0009109 0.00093354] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0012252 0.00120074 0.00117616 ... 0.00089071 0.00091311 0.00093551] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0012252 0.00120074 0.00117616 ... 0.00089071 0.00091311 0.00093551] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00122931 0.00120512 0.0011808 ... 0.00089273 0.0009149 0.00093706]] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00122931 0.00120512 0.0011808 ... 0.00089273 0.0009149 0.00093706]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] INFO stpipe.Ami3Pipeline.ami_analyze:step.py:546 Step ami_analyze done INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw00793022001_03102_00002_nis_c1014_ami.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00001_nis_cal.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00001_nis_cal.fits INFO stpipe.Ami3Pipeline.ami_analyze:step.py:430 Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00001_nis_cal.fits',). INFO stpipe.Ami3Pipeline.ami_analyze:step.py:434 Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:45 Oversampling factor = 3 INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:46 Initial rotation guess = 1.49 deg INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:47 Initial values to use for psf offset = [0.0, 0.0] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:61 Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21262.74743394+1.65702603e-14j 21433.26247024+2.00294736e-13j 18356.43687498+1.85245501e-13j ... 16045.99796503-4.14410365e-16j 16796.20697899-2.57310824e-13j 18027.56643526+1.75690491e-14j] [19481.38859957+1.18864160e-13j 19085.68744314+3.96351906e-13j 16646.31971071+3.54088056e-13j ... 15384.85282167+4.19700524e-16j 16515.24136879-2.41841776e-13j 17672.01558045+7.15419454e-14j] [17784.24477563+3.40755383e-13j 17143.94358718+4.32331348e-13j 15685.17649745+4.18392336e-13j ... 14986.86543025+9.95056619e-14j 15890.05563341-2.43988148e-13j 16923.08402323+1.72445161e-13j] ... [16581.56826942+2.59698201e-13j 17114.04874524-2.47274126e-13j 16573.27231642-6.23124370e-13j ... 13802.20369179-3.55959052e-13j 14378.3542587 +9.55045792e-14j 15248.77303394+3.24084897e-13j] [17803.35720131-1.18048464e-13j 18025.06570965+2.82289129e-14j 17166.04749827+3.98307273e-13j ... 14850.50166992-7.46790597e-14j 15023.78024694-8.00669472e-13j 15823.87996591+3.99237516e-14j] [19987.206492 +4.19513258e-13j 20242.55451854-9.14575721e-13j 18129.35539346-3.79463203e-13j ... 16217.47039602+9.62532257e-14j 16194.16040266-2.84555413e-13j 16961.00512631-5.97856965e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21262.74743394+1.65702603e-14j 21433.26247024+2.00294736e-13j 18356.43687498+1.85245501e-13j ... 16045.99796503-4.14410365e-16j 16796.20697899-2.57310824e-13j 18027.56643526+1.75690491e-14j] [19481.38859957+1.18864160e-13j 19085.68744314+3.96351906e-13j 16646.31971071+3.54088056e-13j ... 15384.85282167+4.19700524e-16j 16515.24136879-2.41841776e-13j 17672.01558045+7.15419454e-14j] [17784.24477563+3.40755383e-13j 17143.94358718+4.32331348e-13j 15685.17649745+4.18392336e-13j ... 14986.86543025+9.95056619e-14j 15890.05563341-2.43988148e-13j 16923.08402323+1.72445161e-13j] ... [16581.56826942+2.59698201e-13j 17114.04874524-2.47274126e-13j 16573.27231642-6.23124370e-13j ... 13802.20369179-3.55959052e-13j 14378.3542587 +9.55045792e-14j 15248.77303394+3.24084897e-13j] [17803.35720131-1.18048464e-13j 18025.06570965+2.82289129e-14j 17166.04749827+3.98307273e-13j ... 14850.50166992-7.46790597e-14j 15023.78024694-8.00669472e-13j 15823.87996591+3.99237516e-14j] [19987.206492 +4.19513258e-13j 20242.55451854-9.14575721e-13j 18129.35539346-3.79463203e-13j ... 16217.47039602+9.62532257e-14j 16194.16040266-2.84555413e-13j 16961.00512631-5.97856965e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6647637.515665944-2.5849394142282115e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6647637.515665944-2.5849394142282115e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6647637.435355943: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6647637.435355943: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6647637.515665944: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6647637.515665944: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190162: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190162: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21278.63087013-6.60492746e-15j 21435.03528144+7.29224234e-14j 18333.98480902+5.27876675e-14j ... 16040.19323564+6.05431057e-14j 16783.62874095-1.13993620e-13j 18023.05185665+6.42963773e-14j] [19494.76218849+2.52620459e-13j 19070.58240717+2.92239820e-13j 16613.01714864+2.00555336e-13j ... 15409.82241141+5.64361744e-14j 16551.00809952+5.56936743e-14j 17697.59702573+1.74159844e-13j] [17783.90232644+4.79672757e-13j 17140.50194998+5.07019626e-13j 15684.39807704+3.61429668e-13j ... 14958.04419036+1.87108530e-13j 15914.57240246+2.74584439e-13j 16947.18516078+1.78649349e-13j] ... [16573.15397847-1.26247330e-13j 17100.03724311+7.12642867e-14j 16583.08017342-3.54309913e-13j ... 13808.36757452-2.30526529e-13j 14390.09138632-4.72709750e-13j 15240.92051671+5.22422561e-13j] [17792.72066935-1.56766774e-13j 18032.29499804+1.23123046e-13j 17181.36608457-3.35505815e-13j ... 14895.55753044-4.22344013e-13j 15055.96368383-8.13735363e-14j 15808.94432479+3.20169998e-13j] [19977.92954315-4.64403424e-13j 20259.01942178+2.25038540e-13j 18149.78289894-1.28776033e-13j ... 16205.81842122-4.80385484e-14j 16170.41577097-8.09338540e-13j 16924.49292922+5.35475652e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21278.63087013-6.60492746e-15j 21435.03528144+7.29224234e-14j 18333.98480902+5.27876675e-14j ... 16040.19323564+6.05431057e-14j 16783.62874095-1.13993620e-13j 18023.05185665+6.42963773e-14j] [19494.76218849+2.52620459e-13j 19070.58240717+2.92239820e-13j 16613.01714864+2.00555336e-13j ... 15409.82241141+5.64361744e-14j 16551.00809952+5.56936743e-14j 17697.59702573+1.74159844e-13j] [17783.90232644+4.79672757e-13j 17140.50194998+5.07019626e-13j 15684.39807704+3.61429668e-13j ... 14958.04419036+1.87108530e-13j 15914.57240246+2.74584439e-13j 16947.18516078+1.78649349e-13j] ... [16573.15397847-1.26247330e-13j 17100.03724311+7.12642867e-14j 16583.08017342-3.54309913e-13j ... 13808.36757452-2.30526529e-13j 14390.09138632-4.72709750e-13j 15240.92051671+5.22422561e-13j] [17792.72066935-1.56766774e-13j 18032.29499804+1.23123046e-13j 17181.36608457-3.35505815e-13j ... 14895.55753044-4.22344013e-13j 15055.96368383-8.13735363e-14j 15808.94432479+3.20169998e-13j] [19977.92954315-4.64403424e-13j 20259.01942178+2.25038540e-13j 18149.78289894-1.28776033e-13j ... 16205.81842122-4.80385484e-14j 16170.41577097-8.09338540e-13j 16924.49292922+5.35475652e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6646941.2996193785+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6646941.2996193785+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6646941.2193177845: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6646941.2193177845: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6646941.2996193785: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6646941.2996193785: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190157: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190157: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21291.5179496 +1.40503999e-14j 21433.25843064+1.68735326e-13j 18313.90500314+2.48941120e-13j ... 16039.42486992-1.61003864e-13j 16779.30113906-7.54001431e-14j 18022.39016903-2.33818731e-13j] [19505.47569945+1.25836921e-13j 19056.68372581+2.44879042e-13j 16585.13478356+2.10024298e-13j ... 15435.96356063-1.82720405e-13j 16589.73458165-8.18579011e-15j 17722.6782783 -1.21451856e-13j] [17781.61845476+1.82804300e-13j 17137.3050708 +2.49226495e-13j 15686.96766503+2.62263796e-13j ... 14929.07366251-2.33362085e-14j 15931.77831338-6.34652456e-14j 16964.21882756-1.98291594e-13j] ... [16560.51274265+1.59384198e-13j 17087.54232774+3.78909868e-13j 16589.91697808+5.46640877e-13j ... 13811.86740094+2.49276645e-13j 14404.15333152+5.62071453e-14j 15231.62046143-1.90526270e-13j] [17782.53069351-2.78058549e-13j 18038.97244617+1.89837928e-13j 17191.9004795 +3.01643927e-13j ... 14940.58786473-1.00135323e-14j 15087.8406763 +2.97934885e-14j 15797.47405785+4.12552910e-13j] [19970.1333488 -3.09028869e-13j 20273.24981581-4.90329186e-13j 18169.72512491+2.76049781e-13j ... 16190.76949306-2.54872690e-13j 16146.37465515-1.40008381e-13j 16892.30979577-5.62391086e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21291.5179496 +1.40503999e-14j 21433.25843064+1.68735326e-13j 18313.90500314+2.48941120e-13j ... 16039.42486992-1.61003864e-13j 16779.30113906-7.54001431e-14j 18022.39016903-2.33818731e-13j] [19505.47569945+1.25836921e-13j 19056.68372581+2.44879042e-13j 16585.13478356+2.10024298e-13j ... 15435.96356063-1.82720405e-13j 16589.73458165-8.18579011e-15j 17722.6782783 -1.21451856e-13j] [17781.61845476+1.82804300e-13j 17137.3050708 +2.49226495e-13j 15686.96766503+2.62263796e-13j ... 14929.07366251-2.33362085e-14j 15931.77831338-6.34652456e-14j 16964.21882756-1.98291594e-13j] ... [16560.51274265+1.59384198e-13j 17087.54232774+3.78909868e-13j 16589.91697808+5.46640877e-13j ... 13811.86740094+2.49276645e-13j 14404.15333152+5.62071453e-14j 15231.62046143-1.90526270e-13j] [17782.53069351-2.78058549e-13j 18038.97244617+1.89837928e-13j 17191.9004795 +3.01643927e-13j ... 14940.58786473-1.00135323e-14j 15087.8406763 +2.97934885e-14j 15797.47405785+4.12552910e-13j] [19970.1333488 -3.09028869e-13j 20273.24981581-4.90329186e-13j 18169.72512491+2.76049781e-13j ... 16190.76949306-2.54872690e-13j 16146.37465515-1.40008381e-13j 16892.30979577-5.62391086e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6646500.591684088-6.462348535570529e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6646500.591684088-6.462348535570529e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6646500.511387821: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6646500.511387821: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6646500.591684088: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6646500.591684088: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190161: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190161: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21300.36681117+7.68442863e-14j 21426.77342143+2.01057320e-13j 18295.75107447+2.83690471e-13j ... 16044.29548055+1.60291680e-13j 16783.68226037+1.69335426e-13j 18025.0812865 -1.02473174e-13j] [19514.08130256+2.92627451e-13j 19045.45509671+3.73382558e-13j 16563.16933922+3.37135760e-13j ... 15461.89026462+1.92865962e-13j 16629.34959028+4.00191107e-13j 17746.57808136+1.48315516e-14j] [17777.70117984+4.07690748e-13j 17135.01942467+4.89715307e-13j 15692.91075637+5.87891579e-13j ... 14900.47784549+3.69013608e-13j 15940.83627691+5.70681049e-13j 16975.03475688+4.70957018e-13j] ... [16542.07905462+3.42243014e-13j 17075.44356733+2.35108258e-13j 16594.88262568-5.51103056e-13j ... 13814.8221334 +1.72417180e-13j 14419.21211114+4.71401849e-14j 15221.6093762 -6.36926922e-13j] [17773.83445644+1.65902715e-13j 18046.041693 +9.08390806e-14j 17199.29371156-1.52042118e-13j ... 14986.11008877+4.28216309e-13j 15117.89763406-7.46402660e-14j 15789.69170142-3.55892574e-14j] [19964.43968937+5.90648395e-13j 20284.96219415+1.79195076e-13j 18188.54046535+8.37780770e-13j ... 16173.29896176+6.86319033e-14j 16123.02504616+3.31838452e-13j 16865.12711653-1.53093863e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21300.36681117+7.68442863e-14j 21426.77342143+2.01057320e-13j 18295.75107447+2.83690471e-13j ... 16044.29548055+1.60291680e-13j 16783.68226037+1.69335426e-13j 18025.0812865 -1.02473174e-13j] [19514.08130256+2.92627451e-13j 19045.45509671+3.73382558e-13j 16563.16933922+3.37135760e-13j ... 15461.89026462+1.92865962e-13j 16629.34959028+4.00191107e-13j 17746.57808136+1.48315516e-14j] [17777.70117984+4.07690748e-13j 17135.01942467+4.89715307e-13j 15692.91075637+5.87891579e-13j ... 14900.47784549+3.69013608e-13j 15940.83627691+5.70681049e-13j 16975.03475688+4.70957018e-13j] ... [16542.07905462+3.42243014e-13j 17075.44356733+2.35108258e-13j 16594.88262568-5.51103056e-13j ... 13814.8221334 +1.72417180e-13j 14419.21211114+4.71401849e-14j 15221.6093762 -6.36926922e-13j] [17773.83445644+1.65902715e-13j 18046.041693 +9.08390806e-14j 17199.29371156-1.52042118e-13j ... 14986.11008877+4.28216309e-13j 15117.89763406-7.46402660e-14j 15789.69170142-3.55892574e-14j] [19964.43968937+5.90648395e-13j 20284.96219415+1.79195076e-13j 18188.54046535+8.37780770e-13j ... 16173.29896176+6.86319033e-14j 16123.02504616+3.31838452e-13j 16865.12711653-1.53093863e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6646365.641089961+3.2311742677852644e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6646365.641089961+3.2311742677852644e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6646365.560795326: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6646365.560795326: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6646365.641089961: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6646365.641089961: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190162: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190162: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21304.4406748 +2.46319221e-15j 21414.69143767+1.87751785e-13j 18279.06562554+1.83986283e-13j ... 16054.93251303-1.53778343e-14j 16796.6901123 -1.13951167e-13j 18030.50790205+9.48701370e-14j] [19521.2352387 +4.99516017e-14j 19038.10317126+2.71091124e-13j 16547.23489993+2.66554487e-13j ... 15486.14173176+6.48815141e-14j 16667.78227753-3.36962287e-14j 17768.64832553+2.38419516e-13j] [17772.44059096+3.44411884e-13j 17134.4277476 +5.15267577e-13j 15701.73045535+3.46078845e-13j ... 14872.65753689+2.16658778e-13j 15941.72252513+1.73596597e-13j 16980.7699697 +5.07595546e-13j] ... [16517.07788049+5.54268068e-15j 17062.27942348-1.71302802e-13j 16599.03867855-1.49194087e-13j ... 13820.25878983-3.19373108e-13j 14433.85159679-1.67448154e-13j 15211.43282361-6.01674840e-13j] [17767.55537397+1.83549839e-13j 18054.22411778+1.08116211e-13j 17205.35600312+1.74528293e-14j ... 15032.51261712+1.23777413e-14j 15144.95907996-3.06844397e-14j 15785.33076076-1.83488338e-13j] [19961.3392294 +4.29888463e-13j 20294.00773366+5.73132183e-13j 18205.72352239+3.51981763e-13j ... 16154.64592418+2.02669462e-13j 16101.73780383-4.92393510e-14j 16843.4647776 +3.03214483e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21304.4406748 +2.46319221e-15j 21414.69143767+1.87751785e-13j 18279.06562554+1.83986283e-13j ... 16054.93251303-1.53778343e-14j 16796.6901123 -1.13951167e-13j 18030.50790205+9.48701370e-14j] [19521.2352387 +4.99516017e-14j 19038.10317126+2.71091124e-13j 16547.23489993+2.66554487e-13j ... 15486.14173176+6.48815141e-14j 16667.78227753-3.36962287e-14j 17768.64832553+2.38419516e-13j] [17772.44059096+3.44411884e-13j 17134.4277476 +5.15267577e-13j 15701.73045535+3.46078845e-13j ... 14872.65753689+2.16658778e-13j 15941.72252513+1.73596597e-13j 16980.7699697 +5.07595546e-13j] ... [16517.07788049+5.54268068e-15j 17062.27942348-1.71302802e-13j 16599.03867855-1.49194087e-13j ... 13820.25878983-3.19373108e-13j 14433.85159679-1.67448154e-13j 15211.43282361-6.01674840e-13j] [17767.55537397+1.83549839e-13j 18054.22411778+1.08116211e-13j 17205.35600312+1.74528293e-14j ... 15032.51261712+1.23777413e-14j 15144.95907996-3.06844397e-14j 15785.33076076-1.83488338e-13j] [19961.3392294 +4.29888463e-13j 20294.00773366+5.73132183e-13j 18205.72352239+3.51981763e-13j ... 16154.64592418+2.02669462e-13j 16101.73780383-4.92393510e-14j 16843.4647776 +3.03214483e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6646488.10882931+3.2311742677852644e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6646488.10882931+3.2311742677852644e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6646488.028533194: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6646488.028533194: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6646488.10882931: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6646488.10882931: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190161: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190161: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21303.36004587-1.93393694e-14j 21396.50855094+1.35133114e-13j 18263.43126154+2.13604612e-13j ... 16070.92460457-8.28825597e-14j 16817.67480455-8.23803410e-14j 18037.98749714+8.24109895e-14j] [19527.62787845+1.01456123e-13j 19035.44131205+2.94590702e-13j 16537.14327141+4.17628450e-13j ... 15507.37349709+3.67128735e-14j 16703.17657509+1.11561743e-13j 17788.35290951+2.56810630e-13j] [17766.14258145+2.58216387e-13j 17136.26199147+5.74503876e-13j 15712.45688139+4.44531001e-13j ... 14845.82754951+1.70375125e-14j 15935.1498005 +5.63975371e-14j 16982.69362816+3.71936338e-13j] ... [16485.55907262+6.35530956e-13j 17046.47707154+2.72503696e-13j 16603.26221175-2.30153898e-13j ... 13831.6232422 -5.36200610e-14j 14446.86545302+7.27010986e-14j 15201.26848845+7.76598534e-14j] [17764.37568099+1.77290399e-13j 18063.96307528-4.26452525e-13j 17211.84217956-2.61384976e-13j ... 15079.95923803+2.42240134e-14j 15168.43643995+6.63867061e-14j 15783.71607572+7.95428127e-14j] [19961.1367216 +2.97659438e-13j 20300.40135592+4.25249707e-13j 18220.92888252+2.36095783e-13j ... 16136.1554045 -1.50082150e-13j 16084.12283784-1.76916053e-13j 16827.66332607+2.83171406e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21303.36004587-1.93393694e-14j 21396.50855094+1.35133114e-13j 18263.43126154+2.13604612e-13j ... 16070.92460457-8.28825597e-14j 16817.67480455-8.23803410e-14j 18037.98749714+8.24109895e-14j] [19527.62787845+1.01456123e-13j 19035.44131205+2.94590702e-13j 16537.14327141+4.17628450e-13j ... 15507.37349709+3.67128735e-14j 16703.17657509+1.11561743e-13j 17788.35290951+2.56810630e-13j] [17766.14258145+2.58216387e-13j 17136.26199147+5.74503876e-13j 15712.45688139+4.44531001e-13j ... 14845.82754951+1.70375125e-14j 15935.1498005 +5.63975371e-14j 16982.69362816+3.71936338e-13j] ... [16485.55907262+6.35530956e-13j 17046.47707154+2.72503696e-13j 16603.26221175-2.30153898e-13j ... 13831.6232422 -5.36200610e-14j 14446.86545302+7.27010986e-14j 15201.26848845+7.76598534e-14j] [17764.37568099+1.77290399e-13j 18063.96307528-4.26452525e-13j 17211.84217956-2.61384976e-13j ... 15079.95923803+2.42240134e-14j 15168.43643995+6.63867061e-14j 15783.71607572+7.95428127e-14j] [19961.1367216 +2.97659438e-13j 20300.40135592+4.25249707e-13j 18220.92888252+2.36095783e-13j ... 16136.1554045 -1.50082150e-13j 16084.12283784-1.76916053e-13j 16827.66332607+2.83171406e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6646811.525555672-6.462348535570529e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6646811.525555672-6.462348535570529e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6646811.445255649: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6646811.445255649: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6646811.525555672: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6646811.525555672: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190161: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190161: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.45109673+0.j -0.42996089+0.00290065j 0.37147248-0.00519325j ... -0.28889039-0.00648672j 0.37147248+0.00519325j -0.42996089-0.00290065j] [-0.4292187 -0.01736752j 0.40872748+0.01368584j -0.35275634-0.00908139j ... 0.275052 +0.01709641j -0.35381616-0.01917782j 0.40939632+0.01932682j] [ 0.36876857+0.03043481j -0.35072894-0.02633607j 0.30215864+0.02012722j ... -0.23611776-0.02466438j 0.3041439 +0.02937888j -0.3519664 -0.03151089j] ... [-0.28364829+0.03638038j 0.27098972-0.03680384j -0.23424456+0.03358239j ... 0.17895942-0.01775812j -0.23157376+0.02566135j 0.26935978-0.03236114j] [ 0.36876857-0.03043481j -0.3519664 +0.03151089j 0.3041439 -0.02937888j ... -0.23415611+0.01314161j 0.30215864-0.02012722j -0.35072894+0.02633607j] [-0.4292187 +0.01736752j 0.40939632-0.01932682j -0.35381616+0.01917782j ... 0.27403838-0.00449311j -0.35275634+0.00908139j 0.40872748-0.01368584j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21297.12492993-3.69038127e-14j 21372.18884088+1.20669626e-13j 18248.52373625+1.22874052e-13j ... 16091.35538281+2.16585126e-13j 16845.46783089-3.83166677e-16j 18046.8443013 -6.42931837e-14j] [19533.90522183+1.02609510e-14j 19037.79356014+2.80590240e-13j 16532.50060349+3.70289507e-13j ... 15524.51596931+2.75357224e-13j 16734.05997153+5.35818011e-14j 17805.33039695+1.35649827e-13j] [17759.15915642+4.60476102e-13j 17141.03029707+3.57979798e-13j 15723.79249485+4.62602297e-13j ... 14819.96476976+2.17695349e-13j 15922.41305068+7.28915529e-14j 16982.06889953+2.29360806e-13j] ... [16448.31321323+2.09513197e-13j 17026.60286732+1.32060941e-13j 16608.14108515-3.82725664e-14j ... 13852.19768827+3.29265735e-14j 14457.55711203-3.07951488e-14j 15190.85325486-1.67722797e-13j] [17764.63180455+2.52804499e-13j 18075.40056568+1.07309981e-13j 17220.24154846-3.47776177e-14j ... 15128.31732263+3.14807077e-13j 15188.48062559-2.00748474e-13j 15783.90472534-3.66906882e-14j] [19963.90523055-6.73067280e-13j 20304.3346288 -1.53788701e-13j 18233.98569232+5.93099861e-13j ... 16119.09856227+7.01588352e-13j 16071.82578344+7.99332044e-14j 16817.8649762 -1.87706811e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21297.12492993-3.69038127e-14j 21372.18884088+1.20669626e-13j 18248.52373625+1.22874052e-13j ... 16091.35538281+2.16585126e-13j 16845.46783089-3.83166677e-16j 18046.8443013 -6.42931837e-14j] [19533.90522183+1.02609510e-14j 19037.79356014+2.80590240e-13j 16532.50060349+3.70289507e-13j ... 15524.51596931+2.75357224e-13j 16734.05997153+5.35818011e-14j 17805.33039695+1.35649827e-13j] [17759.15915642+4.60476102e-13j 17141.03029707+3.57979798e-13j 15723.79249485+4.62602297e-13j ... 14819.96476976+2.17695349e-13j 15922.41305068+7.28915529e-14j 16982.06889953+2.29360806e-13j] ... [16448.31321323+2.09513197e-13j 17026.60286732+1.32060941e-13j 16608.14108515-3.82725664e-14j ... 13852.19768827+3.29265735e-14j 14457.55711203-3.07951488e-14j 15190.85325486-1.67722797e-13j] [17764.63180455+2.52804499e-13j 18075.40056568+1.07309981e-13j 17220.24154846-3.47776177e-14j ... 15128.31732263+3.14807077e-13j 15188.48062559-2.00748474e-13j 15783.90472534-3.66906882e-14j] [19963.90523055-6.73067280e-13j 20304.3346288 -1.53788701e-13j 18233.98569232+5.93099861e-13j ... 16119.09856227+7.01588352e-13j 16071.82578344+7.99332044e-14j 16817.8649762 -1.87706811e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 36.087738: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6647475.719708889-5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6647475.719708889-5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6647475.639400842: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6647475.639400842: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6647475.719708889: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6647475.719708889: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190161: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999879190161: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=39, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=39, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.09041303934909911, 0.48255080655963667) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.09041303934909911, 0.48255080655963667) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00080357 0.000784 0.00076445 ... 0.00130607 0.00133095 0.00135562] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00080357 0.000784 0.00076445 ... 0.00130607 0.00133095 0.00135562] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00080495 0.00078513 0.00076534 ... 0.00129971 0.00132486 0.00134983] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00080495 0.00078513 0.00076534 ... 0.00129971 0.00132486 0.00134983] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00080596 0.0007859 0.00076587 ... 0.00129282 0.00131825 0.00134351] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00080596 0.0007859 0.00076587 ... 0.00129282 0.00131825 0.00134351] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00129957 0.00127186 0.00124405 ... 0.00070533 0.00072732 0.00074945] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00129957 0.00127186 0.00124405 ... 0.00070533 0.00072732 0.00074945] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00131087 0.0012834 0.0012558 ... 0.000709 0.00073082 0.00075278] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00131087 0.0012834 0.0012558 ... 0.000709 0.00073082 0.00075278] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00132167 0.00129444 0.00126708 ... 0.00071232 0.00073397 0.00075574]] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00132167 0.00129444 0.00126708 ... 0.00071232 0.00073397 0.00075574]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] INFO stpipe.Ami3Pipeline.ami_analyze:step.py:546 Step ami_analyze done INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw00793022001_03102_00001_nis_c1014_ami.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00003_nis_cal.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00003_nis_cal.fits INFO stpipe.Ami3Pipeline.ami_analyze:step.py:430 Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793022001_03102_00003_nis_cal.fits',). INFO stpipe.Ami3Pipeline.ami_analyze:step.py:434 Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:45 Oversampling factor = 3 INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:46 Initial rotation guess = 1.49 deg INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:47 Initial values to use for psf offset = [0.0, 0.0] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:61 Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19074.16027669-1.74714959e-13j 19226.6353208 -1.94028020e-13j 16951.82403348+2.26704296e-14j ... 15166.85950127-6.13662431e-14j 15277.85409621-2.05190935e-13j 16137.87309782-2.95567892e-13j] [19452.26253466-4.20108353e-14j 19355.71875592+7.99073527e-14j 16571.85462597+1.34970980e-13j ... 14704.56650231+2.06817392e-13j 15544.35397553-1.85288811e-13j 16772.88513746-1.23361160e-13j] [17515.33573263-8.14562250e-14j 16958.09539012+2.16754499e-13j 14976.13606487+2.93564848e-13j ... 14165.48646031+7.96320811e-14j 15138.59393106-7.14090601e-14j 16180.12085328+1.30757749e-13j] ... [14313.26065793-1.29133394e-13j 14849.66439004-1.67087322e-13j 14407.64397106-4.28997894e-13j ... 12796.34677225-1.89652521e-13j 13154.61977156+4.05770615e-13j 13526.15470759-7.74006572e-13j] [15735.80049349-6.95255098e-14j 16103.63355673-1.09470879e-13j 15527.72026183-1.75512745e-13j ... 13012.71052739-1.27394564e-13j 13491.32012937+3.84203157e-13j 14358.93848715-4.12138471e-13j] [16964.15948136-4.63007202e-13j 17110.64457598-2.74374085e-13j 16062.21957354-1.72014051e-13j ... 14219.97851934-9.04490050e-14j 14206.44213952+1.24763897e-13j 14897.98668546-5.03588124e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19074.16027669-1.74714959e-13j 19226.6353208 -1.94028020e-13j 16951.82403348+2.26704296e-14j ... 15166.85950127-6.13662431e-14j 15277.85409621-2.05190935e-13j 16137.87309782-2.95567892e-13j] [19452.26253466-4.20108353e-14j 19355.71875592+7.99073527e-14j 16571.85462597+1.34970980e-13j ... 14704.56650231+2.06817392e-13j 15544.35397553-1.85288811e-13j 16772.88513746-1.23361160e-13j] [17515.33573263-8.14562250e-14j 16958.09539012+2.16754499e-13j 14976.13606487+2.93564848e-13j ... 14165.48646031+7.96320811e-14j 15138.59393106-7.14090601e-14j 16180.12085328+1.30757749e-13j] ... [14313.26065793-1.29133394e-13j 14849.66439004-1.67087322e-13j 14407.64397106-4.28997894e-13j ... 12796.34677225-1.89652521e-13j 13154.61977156+4.05770615e-13j 13526.15470759-7.74006572e-13j] [15735.80049349-6.95255098e-14j 16103.63355673-1.09470879e-13j 15527.72026183-1.75512745e-13j ... 13012.71052739-1.27394564e-13j 13491.32012937+3.84203157e-13j 14358.93848715-4.12138471e-13j] [16964.15948136-4.63007202e-13j 17110.64457598-2.74374085e-13j 16062.21957354-1.72014051e-13j ... 14219.97851934-9.04490050e-14j 14206.44213952+1.24763897e-13j 14897.98668546-5.03588124e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6160686.685527395-5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6160686.685527395-5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6160687.085962279: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6160687.085962279: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6160686.685527395: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6160686.685527395: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000064998417: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000064998417: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19072.78523136+1.20931725e-14j 19240.55652287-1.25094659e-13j 16964.16621307-3.91251344e-14j ... 15147.66948333-8.52049436e-14j 15248.37842967-1.77558792e-13j 16108.11938388-9.82730284e-14j] [19470.25121655+1.13576139e-13j 19350.5466685 +8.33582082e-14j 16542.12962385+1.35651091e-13j ... 14713.12314946+5.92467746e-14j 15546.45441697-1.16326850e-13j 16779.81606193-7.24740805e-15j] [17523.84861482+2.43019562e-13j 16944.42833408+2.92349198e-13j 14954.55553102+3.20587126e-13j ... 14177.75626508+1.39060107e-13j 15173.45925558+2.00609061e-14j 16205.88971964+5.32724145e-14j] ... [14285.89028996-2.72193575e-13j 14811.9531229 -7.82091906e-14j 14413.24044591-1.99816453e-13j ... 12777.95130923-5.09001547e-13j 13126.73276111-1.64067780e-14j 13500.36596657-3.08640172e-13j] [15734.10753218+3.18916759e-13j 16101.73737826-2.84682198e-13j 15538.30213382-7.96939855e-13j ... 13034.83718623-5.92795868e-13j 13514.80956197-4.65524754e-14j 14355.51824154+1.82178579e-13j] [16949.90851755-4.12999730e-14j 17118.22869942+1.94020129e-13j 16079.93434685-4.34445594e-13j ... 14250.40786473-3.37632190e-13j 14221.82270164-2.34251077e-13j 14874.61453975-3.33376491e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19072.78523136+1.20931725e-14j 19240.55652287-1.25094659e-13j 16964.16621307-3.91251344e-14j ... 15147.66948333-8.52049436e-14j 15248.37842967-1.77558792e-13j 16108.11938388-9.82730284e-14j] [19470.25121655+1.13576139e-13j 19350.5466685 +8.33582082e-14j 16542.12962385+1.35651091e-13j ... 14713.12314946+5.92467746e-14j 15546.45441697-1.16326850e-13j 16779.81606193-7.24740805e-15j] [17523.84861482+2.43019562e-13j 16944.42833408+2.92349198e-13j 14954.55553102+3.20587126e-13j ... 14177.75626508+1.39060107e-13j 15173.45925558+2.00609061e-14j 16205.88971964+5.32724145e-14j] ... [14285.89028996-2.72193575e-13j 14811.9531229 -7.82091906e-14j 14413.24044591-1.99816453e-13j ... 12777.95130923-5.09001547e-13j 13126.73276111-1.64067780e-14j 13500.36596657-3.08640172e-13j] [15734.10753218+3.18916759e-13j 16101.73737826-2.84682198e-13j 15538.30213382-7.96939855e-13j ... 13034.83718623-5.92795868e-13j 13514.80956197-4.65524754e-14j 14355.51824154+1.82178579e-13j] [16949.90851755-4.12999730e-14j 17118.22869942+1.94020129e-13j 16079.93434685-4.34445594e-13j ... 14250.40786473-3.37632190e-13j 14221.82270164-2.34251077e-13j 14874.61453975-3.33376491e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6160041.4684983045+2.5849394142282115e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6160041.4684983045+2.5849394142282115e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6160041.868891248: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6160041.868891248: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6160041.4684983045: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6160041.4684983045: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000649984169: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000649984169: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19071.69856629-3.27459135e-14j 19251.6740214 -5.93039352e-14j 16977.50553817+1.72890213e-13j ... 15127.13522344-1.17104698e-13j 15220.58109056-1.45819905e-13j 16082.53522181-9.94205278e-14j] [19484.94365397+1.45988036e-13j 19342.75095684+9.79403224e-14j 16515.29818146+2.90849318e-13j ... 14727.1056259 +1.27029841e-13j 15556.67564942-7.46155023e-14j 16789.84777744-4.89082396e-14j] [17529.66718689+2.42589397e-13j 16932.55863108+3.33715016e-13j 14938.44628026+3.48305451e-13j ... 14189.66111054+2.74248918e-13j 15207.61412648+1.07310944e-13j 16228.69916201+5.71209187e-14j] ... [14258.94796641+1.27612730e-14j 14779.28643751+1.22890392e-13j 14414.79798142+5.25748994e-13j ... 12754.65364476-3.51998608e-13j 13103.15780706+2.15502854e-14j 13472.77535271+2.51377140e-13j] [15728.70765448+1.88308762e-13j 16100.36511738+5.37104831e-13j 15545.44897438-1.88052563e-13j ... 13056.23403465-2.38370797e-13j 13539.97424817+1.84036626e-13j 14351.40083736+2.61927118e-13j] [16937.12734737-5.41296642e-14j 17125.17134856+4.19557688e-13j 16093.97394429-4.50465137e-13j ... 14279.46391556-1.92300148e-13j 14236.27355823+5.75730434e-13j 14855.06344672+4.58520318e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19071.69856629-3.27459135e-14j 19251.6740214 -5.93039352e-14j 16977.50553817+1.72890213e-13j ... 15127.13522344-1.17104698e-13j 15220.58109056-1.45819905e-13j 16082.53522181-9.94205278e-14j] [19484.94365397+1.45988036e-13j 19342.75095684+9.79403224e-14j 16515.29818146+2.90849318e-13j ... 14727.1056259 +1.27029841e-13j 15556.67564942-7.46155023e-14j 16789.84777744-4.89082396e-14j] [17529.66718689+2.42589397e-13j 16932.55863108+3.33715016e-13j 14938.44628026+3.48305451e-13j ... 14189.66111054+2.74248918e-13j 15207.61412648+1.07310944e-13j 16228.69916201+5.71209187e-14j] ... [14258.94796641+1.27612730e-14j 14779.28643751+1.22890392e-13j 14414.79798142+5.25748994e-13j ... 12754.65364476-3.51998608e-13j 13103.15780706+2.15502854e-14j 13472.77535271+2.51377140e-13j] [15728.70765448+1.88308762e-13j 16100.36511738+5.37104831e-13j 15545.44897438-1.88052563e-13j ... 13056.23403465-2.38370797e-13j 13539.97424817+1.84036626e-13j 14351.40083736+2.61927118e-13j] [16937.12734737-5.41296642e-14j 17125.17134856+4.19557688e-13j 16093.97394429-4.50465137e-13j ... 14279.46391556-1.92300148e-13j 14236.27355823+5.75730434e-13j 14855.06344672+4.58520318e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6159633.043173858-8.077935669463161e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6159633.043173858-8.077935669463161e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6159633.443540255: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6159633.443540255: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6159633.043173858: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6159633.043173858: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000649984169: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000649984169: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19070.81571149+1.35359175e-13j 19259.17203708+4.96535592e-14j 16990.87373562+1.30117871e-13j ... 15106.4586448 +1.82831981e-13j 15195.79290571-1.95158303e-13j 16061.52040688-1.35014588e-13j] [19495.45067435+3.05612998e-13j 19331.86940115+1.12891504e-13j 16491.26679335+2.39529412e-13j ... 14746.3206419 +2.21131841e-13j 15574.72750914+1.54543337e-13j 16802.17752916-7.13081526e-14j] [17533.63831913+5.39480356e-13j 16924.27012383+1.96202998e-13j 14928.1107234 +2.92210433e-13j ... 14200.04236864+3.29242642e-13j 15239.14292287+2.96670497e-13j 16248.30071145+6.81562256e-14j] ... [14230.64866374-1.19017360e-13j 14751.6048861 +5.96007984e-14j 14413.11602828-3.37140738e-13j ... 12725.19572193+5.89161484e-14j 13083.42811046+1.39705568e-13j 13445.16921586-5.47249357e-13j] [15718.59507808+1.73631921e-13j 16098.80124569+9.68553034e-15j 15550.46243374-8.88445944e-16j ... 13078.82717108+3.69328126e-13j 13565.35046967-1.68633244e-13j 14346.91206144-1.55118896e-13j] [16927.20615656-2.51422920e-13j 17132.52619587+4.66801534e-14j 16105.32923371+4.43019129e-13j ... 14307.35880937+1.31038022e-14j 14248.86915703+3.40221118e-13j 14839.76045336+2.99996984e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19070.81571149+1.35359175e-13j 19259.17203708+4.96535592e-14j 16990.87373562+1.30117871e-13j ... 15106.4586448 +1.82831981e-13j 15195.79290571-1.95158303e-13j 16061.52040688-1.35014588e-13j] [19495.45067435+3.05612998e-13j 19331.86940115+1.12891504e-13j 16491.26679335+2.39529412e-13j ... 14746.3206419 +2.21131841e-13j 15574.72750914+1.54543337e-13j 16802.17752916-7.13081526e-14j] [17533.63831913+5.39480356e-13j 16924.27012383+1.96202998e-13j 14928.1107234 +2.92210433e-13j ... 14200.04236864+3.29242642e-13j 15239.14292287+2.96670497e-13j 16248.30071145+6.81562256e-14j] ... [14230.64866374-1.19017360e-13j 14751.6048861 +5.96007984e-14j 14413.11602828-3.37140738e-13j ... 12725.19572193+5.89161484e-14j 13083.42811046+1.39705568e-13j 13445.16921586-5.47249357e-13j] [15718.59507808+1.73631921e-13j 16098.80124569+9.68553034e-15j 15550.46243374-8.88445944e-16j ... 13078.82717108+3.69328126e-13j 13565.35046967-1.68633244e-13j 14346.91206144-1.55118896e-13j] [16927.20615656-2.51422920e-13j 17132.52619587+4.66801534e-14j 16105.32923371+4.43019129e-13j ... 14307.35880937+1.31038022e-14j 14248.86915703+3.40221118e-13j 14839.76045336+2.99996984e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6159507.977941813+1.2924697071141057e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6159507.977941813+1.2924697071141057e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6159508.378300082: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6159508.378300082: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6159507.977941813: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6159507.977941813: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000064998417: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000064998417: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19070.05742144-5.63012694e-14j 19262.4710802 +7.26321730e-14j 17003.37466117+2.61481859e-14j ... 15086.96083927+1.28379412e-13j 15175.4957023 -1.78902423e-13j 16045.35869445-2.23904217e-13j] [19501.19045562+4.49868362e-14j 19317.58289782+2.05801920e-13j 16469.88584662-5.21064023e-15j ... 14770.04420604+2.05875478e-13j 15599.76031741-1.98619075e-13j 16815.89553939-1.40308029e-13j] [17536.69177559+5.69414791e-14j 16921.0360312 +5.43366735e-13j 14923.35175634+7.72184450e-14j ... 14207.81412177+2.10535916e-13j 15266.45863305-5.23369980e-14j 16264.59115461-3.84969723e-14j] ... [14199.79623375-3.87535376e-13j 14728.12614973-1.56655949e-13j 14409.33683981+2.14490387e-13j ... 12689.91349337-6.32005253e-14j 13066.45284994-2.58409674e-13j 13419.45473674+6.09240766e-14j] [15703.33149524-1.41127944e-14j 16096.07913774+7.81804499e-14j 15554.62865739+8.80530726e-13j ... 13104.92856916-1.37084184e-13j 13589.46632001-2.55343529e-13j 14342.12334548+5.17128307e-14j] [16921.28448203-3.87246357e-13j 17141.19113704+2.00086522e-13j 16115.17009723-5.79050824e-14j ... 14334.30395307+3.03417842e-13j 14259.11093103-1.48233594e-13j 14828.72785268+6.20342996e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19070.05742144-5.63012694e-14j 19262.4710802 +7.26321730e-14j 17003.37466117+2.61481859e-14j ... 15086.96083927+1.28379412e-13j 15175.4957023 -1.78902423e-13j 16045.35869445-2.23904217e-13j] [19501.19045562+4.49868362e-14j 19317.58289782+2.05801920e-13j 16469.88584662-5.21064023e-15j ... 14770.04420604+2.05875478e-13j 15599.76031741-1.98619075e-13j 16815.89553939-1.40308029e-13j] [17536.69177559+5.69414791e-14j 16921.0360312 +5.43366735e-13j 14923.35175634+7.72184450e-14j ... 14207.81412177+2.10535916e-13j 15266.45863305-5.23369980e-14j 16264.59115461-3.84969723e-14j] ... [14199.79623375-3.87535376e-13j 14728.12614973-1.56655949e-13j 14409.33683981+2.14490387e-13j ... 12689.91349337-6.32005253e-14j 13066.45284994-2.58409674e-13j 13419.45473674+6.09240766e-14j] [15703.33149524-1.41127944e-14j 16096.07913774+7.81804499e-14j 15554.62865739+8.80530726e-13j ... 13104.92856916-1.37084184e-13j 13589.46632001-2.55343529e-13j 14342.12334548+5.17128307e-14j] [16921.28448203-3.87246357e-13j 17141.19113704+2.00086522e-13j 16115.17009723-5.79050824e-14j ... 14334.30395307+3.03417842e-13j 14259.11093103-1.48233594e-13j 14828.72785268+6.20342996e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6159621.474709565+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6159621.474709565+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6159621.875075211: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6159621.875075211: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6159621.474709565: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6159621.474709565: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000064998417: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000064998417: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19069.35325062-7.22820951e-14j 19261.2965034 -2.73882611e-15j 17014.24786027+4.89796295e-14j ... 15069.89088925-1.16077137e-13j 15161.12800167-5.24049297e-13j 16034.19320525-6.07036386e-14j] [19501.93297352+5.63682318e-15j 19299.76484094+4.40710131e-14j 16450.99470677+1.25626562e-13j ... 14797.08102178+2.45905120e-14j 15630.43409711-4.88752195e-13j 16830.07293251+1.12693967e-13j] [17539.75598215+1.00912697e-13j 16923.83176178+1.79337750e-13j 14923.58521832+3.35417170e-13j ... 14212.1241263 +1.30392375e-13j 15288.45210362-6.06205801e-13j 16277.6229313 +2.30174794e-13j] ... [14165.95732363-8.46202381e-13j 14707.517018 -2.61762643e-13j 14404.77482228-5.26293356e-13j ... 12650.77309377-9.08726826e-14j 13050.78311657-2.10665637e-14j 13397.27244672-2.49736885e-14j] [15683.0373217 -1.27613056e-13j 16091.13307175+1.05838502e-14j 15559.05430827-3.49568852e-13j ... 13136.83489342-3.79722318e-13j 13611.12996534-5.89861427e-14j 14336.77870455+1.98098619e-13j] [16920.12471387-1.49023028e-14j 17151.82646918-9.94294951e-14j 16124.69953798+2.67971454e-14j ... 14360.47927757-2.85131763e-13j 14267.07710711-3.31341112e-13j 14821.6453254 +1.60977465e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19069.35325062-7.22820951e-14j 19261.2965034 -2.73882611e-15j 17014.24786027+4.89796295e-14j ... 15069.89088925-1.16077137e-13j 15161.12800167-5.24049297e-13j 16034.19320525-6.07036386e-14j] [19501.93297352+5.63682318e-15j 19299.76484094+4.40710131e-14j 16450.99470677+1.25626562e-13j ... 14797.08102178+2.45905120e-14j 15630.43409711-4.88752195e-13j 16830.07293251+1.12693967e-13j] [17539.75598215+1.00912697e-13j 16923.83176178+1.79337750e-13j 14923.58521832+3.35417170e-13j ... 14212.1241263 +1.30392375e-13j 15288.45210362-6.06205801e-13j 16277.6229313 +2.30174794e-13j] ... [14165.95732363-8.46202381e-13j 14707.517018 -2.61762643e-13j 14404.77482228-5.26293356e-13j ... 12650.77309377-9.08726826e-14j 13050.78311657-2.10665637e-14j 13397.27244672-2.49736885e-14j] [15683.0373217 -1.27613056e-13j 16091.13307175+1.05838502e-14j 15559.05430827-3.49568852e-13j ... 13136.83489342-3.79722318e-13j 13611.12996534-5.89861427e-14j 14336.77870455+1.98098619e-13j] [16920.12471387-1.49023028e-14j 17151.82646918-9.94294951e-14j 16124.69953798+2.67971454e-14j ... 14360.47927757-2.85131763e-13j 14267.07710711-3.31341112e-13j 14821.6453254 +1.60977465e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6159921.200606965+6.462348535570529e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6159921.200606965+6.462348535570529e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6159921.600992093: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6159921.600992093: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6159921.200606965: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6159921.200606965: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000064998417: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000064998417: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. -0. ... 0. 0. 0.] [-0. -0. 0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.41805312+0.j -0.3985071 +0.00199948j 0.34441307-0.00357439j ... -0.26801991-0.00445783j 0.34441307+0.00357439j -0.3985071 -0.00199948j] [-0.39789602+0.00386755j 0.37887393-0.00565635j -0.32702238+0.00676879j ... 0.2553395 +0.00160394j -0.32821682-0.00014869j 0.3796095 -0.00178633j] [ 0.34218689-0.00683315j -0.32533623+0.00831707j 0.28018588-0.00895461j ... -0.21942527+0.00088836j 0.28246038-0.0027217j -0.32672055+0.00482701j] ... [-0.2637024 -0.00828176j 0.25208884+0.00651958j -0.21801959-0.00449319j ... 0.16582158+0.00890518j -0.21490148-0.00961893j 0.25022559+0.00939992j] [ 0.34218689+0.00683315j -0.32672055-0.00482701j 0.28246038+0.0027217j ... -0.21703719-0.00864315j 0.28018588+0.00895461j -0.32533623-0.00831707j] [-0.39789602-0.00386755j 0.3796095 +0.00178633j -0.32821682+0.00014869j ... 0.25412034+0.0070201j -0.32702238-0.00676879j 0.37887393+0.00565635j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19068.64147111-4.25073587e-14j 19255.71886487+4.36219704e-14j 17022.9272476 +9.09176709e-14j ... 15056.24646476-4.00256972e-14j 15153.88000215-5.91938335e-14j 16028.01305269-1.55965339e-13j] [19497.81166506-1.78854150e-15j 19278.51721938+6.65101552e-14j 16434.46243264+1.17362167e-13j ... 14825.90751996+1.19504225e-13j 15665.05258109+2.07741298e-13j 16843.86083043+2.93457508e-14j] [17543.66618393+9.67312341e-15j 16933.00054378+2.40131446e-13j 14927.99148135+1.32020592e-14j ... 14212.4560048 +2.15880710e-13j 15304.56412418+3.41596678e-13j 16287.60012007+2.24841158e-13j] ... [14129.48970785-2.91392476e-14j 14688.13801222+2.12471696e-13j 14400.72606089-1.15604477e-13j ... 12611.09411205+1.66583537e-14j 13034.96692198-2.67149581e-13j 13379.65857223-4.62300020e-13j] [15658.30517637-1.25248923e-13j 16082.96755684-4.95076783e-13j 15564.54317822-4.10438369e-13j ... 13176.41355969-1.90817017e-14j 13629.7005342 +1.32694559e-13j 14330.31333643-6.01930522e-13j] [16924.01454082-3.48726216e-13j 17164.79667119-6.89370538e-14j 16135.0057797 +2.65847476e-13j ... 14385.99574353-1.77045615e-13j 14273.46655925-1.77362385e-13j 14817.94918828+9.90164278e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[19068.64147111-4.25073587e-14j 19255.71886487+4.36219704e-14j 17022.9272476 +9.09176709e-14j ... 15056.24646476-4.00256972e-14j 15153.88000215-5.91938335e-14j 16028.01305269-1.55965339e-13j] [19497.81166506-1.78854150e-15j 19278.51721938+6.65101552e-14j 16434.46243264+1.17362167e-13j ... 14825.90751996+1.19504225e-13j 15665.05258109+2.07741298e-13j 16843.86083043+2.93457508e-14j] [17543.66618393+9.67312341e-15j 16933.00054378+2.40131446e-13j 14927.99148135+1.32020592e-14j ... 14212.4560048 +2.15880710e-13j 15304.56412418+3.41596678e-13j 16287.60012007+2.24841158e-13j] ... [14129.48970785-2.91392476e-14j 14688.13801222+2.12471696e-13j 14400.72606089-1.15604477e-13j ... 12611.09411205+1.66583537e-14j 13034.96692198-2.67149581e-13j 13379.65857223-4.62300020e-13j] [15658.30517637-1.25248923e-13j 16082.96755684-4.95076783e-13j 15564.54317822-4.10438369e-13j ... 13176.41355969-1.90817017e-14j 13629.7005342 +1.32694559e-13j 14330.31333643-6.01930522e-13j] [16924.01454082-3.48726216e-13j 17164.79667119-6.89370538e-14j 16135.0057797 +2.65847476e-13j ... 14385.99574353-1.77045615e-13j 14273.46655925-1.77362385e-13j 14817.94918828+9.90164278e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 33.444252: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6160536.7414012235+5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6160536.7414012235+5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6160537.14182636: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6160537.14182636: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6160536.7414012235: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6160536.7414012235: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000064998417: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000064998417: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=40, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=40, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.0661461926215714, 0.12676799754768706) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.0661461926215714, 0.12676799754768706) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00135252 0.00132714 0.00130157 ... 0.00075368 0.00077437 0.00079512] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00135252 0.00132714 0.00130157 ... 0.00075368 0.00077437 0.00079512] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0013455 0.00131983 0.00129399 ... 0.00075257 0.00077348 0.00079445] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0013455 0.00131983 0.00129399 ... 0.00075257 0.00077348 0.00079445] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00133794 0.00131199 0.00128589 ... 0.00075111 0.00077222 0.00079341] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00133794 0.00131199 0.00128589 ... 0.00075111 0.00077222 0.00079341] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00082034 0.00079846 0.00077665 ... 0.00122138 0.00124836 0.00127523] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00082034 0.00079846 0.00077665 ... 0.00122138 0.00124836 0.00127523] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00082212 0.00080045 0.00077885 ... 0.00123124 0.00125798 0.00128461] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00082212 0.00080045 0.00077885 ... 0.00123124 0.00125798 0.00128461] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00082352 0.00080207 0.00078068 ... 0.00124061 0.00126711 0.00129349]] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00082352 0.00080207 0.00078068 ... 0.00124061 0.00126711 0.00129349]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] INFO stpipe.Ami3Pipeline.ami_analyze:step.py:546 Step ami_analyze done INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw00793022001_03102_00003_nis_c1014_ami.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:98 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00002_nis_cal.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:98 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00002_nis_cal.fits INFO stpipe.Ami3Pipeline.ami_analyze:step.py:430 Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00002_nis_cal.fits',). INFO stpipe.Ami3Pipeline.ami_analyze:step.py:434 Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:45 Oversampling factor = 3 INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:46 Initial rotation guess = 1.49 deg INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:47 Initial values to use for psf offset = [0.0, 0.0] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:61 Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21317.33382123-1.61184094e-13j 19942.98340123-8.88274583e-15j 17466.67242274+3.69423473e-14j ... 16385.59886132-8.33162317e-14j 16424.32970669-3.25144146e-13j 18524.20260883-4.35554896e-13j] [20720.86729096+9.32290264e-14j 19105.7624108 +2.87336098e-13j 16563.16533549+2.70580012e-13j ... 15911.10842908+6.11125556e-14j 16719.21962227-1.08509626e-13j 18599.84349241-2.80847816e-13j] [18180.07810267+1.40796569e-13j 16800.92935639+2.99759255e-13j 15346.27540174+2.32341600e-13j ... 15360.8790961 +3.74095654e-13j 16275.57017612+1.39595987e-14j 17395.98656819-2.31273859e-13j] ... [15901.88252068-3.55703107e-13j 16172.37677528-2.80510192e-13j 15266.4075778 -1.34933130e-13j ... 13772.94873189-5.99527702e-13j 14149.0703829 -7.22520517e-13j 14893.11945445-4.56503641e-13j] [17218.59466635-2.76461421e-13j 17107.97583601+1.55421607e-14j 16308.44095222+1.55169897e-13j ... 14240.45190177-4.32853456e-13j 14602.50305569-7.70786893e-14j 15907.94280807-4.73239743e-13j] [18891.91419172-4.37277389e-13j 18159.34250353-5.60631366e-13j 16973.60515162-4.07460095e-13j ... 15592.86950819-3.95126372e-13j 15295.05134898-1.71612148e-13j 16870.12532509-3.97361336e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21317.33382123-1.61184094e-13j 19942.98340123-8.88274583e-15j 17466.67242274+3.69423473e-14j ... 16385.59886132-8.33162317e-14j 16424.32970669-3.25144146e-13j 18524.20260883-4.35554896e-13j] [20720.86729096+9.32290264e-14j 19105.7624108 +2.87336098e-13j 16563.16533549+2.70580012e-13j ... 15911.10842908+6.11125556e-14j 16719.21962227-1.08509626e-13j 18599.84349241-2.80847816e-13j] [18180.07810267+1.40796569e-13j 16800.92935639+2.99759255e-13j 15346.27540174+2.32341600e-13j ... 15360.8790961 +3.74095654e-13j 16275.57017612+1.39595987e-14j 17395.98656819-2.31273859e-13j] ... [15901.88252068-3.55703107e-13j 16172.37677528-2.80510192e-13j 15266.4075778 -1.34933130e-13j ... 13772.94873189-5.99527702e-13j 14149.0703829 -7.22520517e-13j 14893.11945445-4.56503641e-13j] [17218.59466635-2.76461421e-13j 17107.97583601+1.55421607e-14j 16308.44095222+1.55169897e-13j ... 14240.45190177-4.32853456e-13j 14602.50305569-7.70786893e-14j 15907.94280807-4.73239743e-13j] [18891.91419172-4.37277389e-13j 18159.34250353-5.60631366e-13j 16973.60515162-4.07460095e-13j ... 15592.86950819-3.95126372e-13j 15295.05134898-1.71612148e-13j 16870.12532509-3.97361336e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6542664.314978508+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6542664.314978508+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6542664.427862845: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6542664.427862845: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6542664.314978508: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6542664.314978508: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000017253573: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000017253573: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21328.03493822-1.19048848e-13j 19951.17062658-2.25447029e-14j 17467.82907784+8.47599708e-14j ... 16358.41830223-1.25745493e-13j 16393.82211818-2.26628867e-13j 18509.6795268 -2.52736558e-13j] [20732.3065549 +2.64489641e-14j 19080.21318647+1.43788341e-13j 16528.19675309+1.97673483e-13j ... 15929.08031662+1.72896099e-13j 16733.09723475-9.26472097e-14j 18616.05777899-9.14659148e-14j] [18182.72018642+3.25040362e-13j 16785.40050985+3.97119600e-13j 15345.70197124+3.82299741e-13j ... 15376.74853979+2.20644090e-13j 16313.1585269 -1.68203381e-13j 17414.88417154+1.00314364e-13j] ... [15873.957642 -4.32718601e-13j 16149.79922426-2.46020234e-13j 15292.25820151+3.58997955e-13j ... 13761.39000024-5.48989453e-13j 14125.92736757-9.46874650e-14j 14873.50119704-1.05535566e-12j] [17218.41541209-2.15053191e-13j 17112.74347692-2.01008872e-13j 16323.06488985-2.25112546e-13j ... 14286.0106533 -3.69709983e-13j 14620.09748438+2.46030101e-13j 15900.20388794-7.02899207e-13j] [18886.79635458+4.24149394e-13j 18175.52513274+3.85754225e-13j 16998.44349739-3.01642302e-13j ... 15611.96760154-3.86371729e-13j 15285.09536315-5.63611013e-13j 16839.0256008 -7.44739480e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21328.03493822-1.19048848e-13j 19951.17062658-2.25447029e-14j 17467.82907784+8.47599708e-14j ... 16358.41830223-1.25745493e-13j 16393.82211818-2.26628867e-13j 18509.6795268 -2.52736558e-13j] [20732.3065549 +2.64489641e-14j 19080.21318647+1.43788341e-13j 16528.19675309+1.97673483e-13j ... 15929.08031662+1.72896099e-13j 16733.09723475-9.26472097e-14j 18616.05777899-9.14659148e-14j] [18182.72018642+3.25040362e-13j 16785.40050985+3.97119600e-13j 15345.70197124+3.82299741e-13j ... 15376.74853979+2.20644090e-13j 16313.1585269 -1.68203381e-13j 17414.88417154+1.00314364e-13j] ... [15873.957642 -4.32718601e-13j 16149.79922426-2.46020234e-13j 15292.25820151+3.58997955e-13j ... 13761.39000024-5.48989453e-13j 14125.92736757-9.46874650e-14j 14873.50119704-1.05535566e-12j] [17218.41541209-2.15053191e-13j 17112.74347692-2.01008872e-13j 16323.06488985-2.25112546e-13j ... 14286.0106533 -3.69709983e-13j 14620.09748438+2.46030101e-13j 15900.20388794-7.02899207e-13j] [18886.79635458+4.24149394e-13j 18175.52513274+3.85754225e-13j 16998.44349739-3.01642302e-13j ... 15611.96760154-3.86371729e-13j 15285.09536315-5.63611013e-13j 16839.0256008 -7.44739480e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541979.092916889-1.0339757656912846e-25j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541979.092916889-1.0339757656912846e-25j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541979.2057894: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541979.2057894: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541979.092916889: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541979.092916889: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000172535726: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000172535726: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21335.78821292-1.10671488e-13j 19956.86490963+7.07828224e-14j 17473.32152892+1.64466281e-13j ... 16332.8611618 -3.86826275e-13j 16367.68573069-3.31042445e-13j 18497.65984251-3.95300168e-13j] [20740.30056952+9.86805045e-14j 19055.43549277+2.08105776e-13j 16497.23804073+2.40709037e-13j ... 15954.27838616-2.44273708e-13j 16753.34199426-1.68782270e-13j 18632.08241274-1.66661022e-13j] [18184.17480276+2.57922556e-13j 16773.57460464+1.50718880e-13j 15349.69495224+1.66686727e-13j ... 15390.74391864-3.05779994e-13j 16345.94471016-1.92039053e-13j 17429.57529714-8.33274986e-14j] ... [15847.66079671-4.76655609e-13j 16129.21699765-9.08259557e-14j 15314.7609933 +2.15294201e-13j ... 13748.31145292+9.46260526e-14j 14105.65669895-2.21083045e-13j 14849.63296982-4.92601824e-13j] [17216.30742509-7.88267518e-15j 17116.81749555+8.61033305e-15j 16331.56119299+2.59357562e-13j ... 14330.75542585-2.10541401e-13j 14640.33393792-2.55055997e-14j 15891.13476271-6.55639302e-14j] [18882.49357554-1.78065513e-13j 18190.03988134-9.49793688e-15j 17019.9352492 -4.73960065e-13j ... 15626.87979412-4.41561144e-13j 15276.79141395-4.00354115e-13j 16812.72395319-3.34827023e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21335.78821292-1.10671488e-13j 19956.86490963+7.07828224e-14j 17473.32152892+1.64466281e-13j ... 16332.8611618 -3.86826275e-13j 16367.68573069-3.31042445e-13j 18497.65984251-3.95300168e-13j] [20740.30056952+9.86805045e-14j 19055.43549277+2.08105776e-13j 16497.23804073+2.40709037e-13j ... 15954.27838616-2.44273708e-13j 16753.34199426-1.68782270e-13j 18632.08241274-1.66661022e-13j] [18184.17480276+2.57922556e-13j 16773.57460464+1.50718880e-13j 15349.69495224+1.66686727e-13j ... 15390.74391864-3.05779994e-13j 16345.94471016-1.92039053e-13j 17429.57529714-8.33274986e-14j] ... [15847.66079671-4.76655609e-13j 16129.21699765-9.08259557e-14j 15314.7609933 +2.15294201e-13j ... 13748.31145292+9.46260526e-14j 14105.65669895-2.21083045e-13j 14849.63296982-4.92601824e-13j] [17216.30742509-7.88267518e-15j 17116.81749555+8.61033305e-15j 16331.56119299+2.59357562e-13j ... 14330.75542585-2.10541401e-13j 14640.33393792-2.55055997e-14j 15891.13476271-6.55639302e-14j] [18882.49357554-1.78065513e-13j 18190.03988134-9.49793688e-15j 17019.9352492 -4.73960065e-13j ... 15626.87979412-4.41561144e-13j 15276.79141395-4.00354115e-13j 16812.72395319-3.34827023e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541545.344224251+1.2924697071141057e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541545.344224251+1.2924697071141057e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541545.457089281: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541545.457089281: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541545.344224251: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541545.344224251: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000017253573: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000017253573: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21339.72609872-7.34715852e-14j 19958.81259293+1.26549212e-13j 17482.36469338+1.58467185e-13j ... 16310.65671191-1.96457855e-13j 16346.83518375-8.95659398e-14j 18487.92522136-1.37854474e-13j] [20744.62542228+1.33859996e-13j 19031.6477693 +2.18515826e-13j 16470.83703181+1.72038488e-13j ... 15985.64286093+5.25732787e-14j 16779.03447957+9.15418318e-14j 18647.15768926+1.11896092e-13j] [18185.65352653-4.23853405e-14j 16766.97479014+1.88721702e-13j 15357.45859139+1.71789861e-13j ... 15401.19621402+2.57068251e-13j 16372.80900971+3.74507285e-13j 17440.60562649+1.99653325e-13j] ... [15820.5158504 -1.66425383e-13j 16111.14752736-6.56115737e-13j 15333.48294873+9.98711534e-14j ... 13732.47933432-3.74821434e-13j 14088.83985998-6.56401175e-13j 14822.10846223-1.81908140e-13j] [17211.50564461-4.79465900e-13j 17120.9020872 +7.02095759e-14j 16335.21679937-1.09742021e-13j ... 14374.60924342-8.20965187e-14j 14661.88403066+8.36288521e-14j 15881.31500962-1.65205181e-13j] [18880.31419645+3.74490978e-13j 18203.72608302-2.28034417e-13j 17037.74512073+3.64911134e-13j ... 15637.79313815-6.58621448e-13j 15269.66410266-6.68579536e-15j 16792.39248275-3.42305418e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21339.72609872-7.34715852e-14j 19958.81259293+1.26549212e-13j 17482.36469338+1.58467185e-13j ... 16310.65671191-1.96457855e-13j 16346.83518375-8.95659398e-14j 18487.92522136-1.37854474e-13j] [20744.62542228+1.33859996e-13j 19031.6477693 +2.18515826e-13j 16470.83703181+1.72038488e-13j ... 15985.64286093+5.25732787e-14j 16779.03447957+9.15418318e-14j 18647.15768926+1.11896092e-13j] [18185.65352653-4.23853405e-14j 16766.97479014+1.88721702e-13j 15357.45859139+1.71789861e-13j ... 15401.19621402+2.57068251e-13j 16372.80900971+3.74507285e-13j 17440.60562649+1.99653325e-13j] ... [15820.5158504 -1.66425383e-13j 16111.14752736-6.56115737e-13j 15333.48294873+9.98711534e-14j ... 13732.47933432-3.74821434e-13j 14088.83985998-6.56401175e-13j 14822.10846223-1.81908140e-13j] [17211.50564461-4.79465900e-13j 17120.9020872 +7.02095759e-14j 16335.21679937-1.09742021e-13j ... 14374.60924342-8.20965187e-14j 14661.88403066+8.36288521e-14j 15881.31500962-1.65205181e-13j] [18880.31419645+3.74490978e-13j 18203.72608302-2.28034417e-13j 17037.74512073+3.64911134e-13j ... 15637.79313815-6.58621448e-13j 15269.66410266-6.68579536e-15j 16792.39248275-3.42305418e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541412.524642197+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541412.524642197+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541412.637504936: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541412.637504936: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541412.524642197: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541412.524642197: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000017253573: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000017253573: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21339.24355561-1.41070188e-14j 19956.02527748+1.28690709e-13j 17494.02014354+2.24601272e-13j ... 16293.42600323-4.25202978e-13j 16332.13113621-3.21797762e-13j 18480.23276993-2.53763437e-13j] [20745.28551056+1.98191030e-13j 19008.92684898+7.15844910e-14j 16449.54829173+2.80059638e-13j ... 16021.54218558-2.99906591e-13j 16808.88181841-2.73174838e-13j 18660.6028862 -1.47495185e-13j] [18188.38448046+2.52346507e-13j 16766.6353141 -2.62107796e-13j 15367.90582146+5.41014834e-13j ... 15406.77456246-3.15707232e-13j 16393.15766271-1.86350553e-13j 17448.60630611+1.01507931e-13j] ... [15790.34906138+3.90242684e-14j 16095.50953031+6.30302734e-13j 15348.45009977-6.25944072e-14j ... 13713.6787305 -9.66946263e-14j 14075.37584403-1.11607439e-13j 14792.18153687-9.42044799e-14j] [17203.53194431-2.76464625e-13j 17125.34826047+1.52344189e-13j 16335.69064004-1.85375703e-14j ... 14417.97132554-3.65322795e-13j 14683.08424583-1.38025902e-13j 15871.23236642-7.42439419e-13j] [18881.37870017-5.96789051e-13j 18217.39284742+7.88782888e-13j 17051.89481222+1.00578429e-13j ... 15645.41256661-7.52723174e-13j 15263.42569266-7.75953947e-14j 16778.70433633-1.24180502e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21339.24355561-1.41070188e-14j 19956.02527748+1.28690709e-13j 17494.02014354+2.24601272e-13j ... 16293.42600323-4.25202978e-13j 16332.13113621-3.21797762e-13j 18480.23276993-2.53763437e-13j] [20745.28551056+1.98191030e-13j 19008.92684898+7.15844910e-14j 16449.54829173+2.80059638e-13j ... 16021.54218558-2.99906591e-13j 16808.88181841-2.73174838e-13j 18660.6028862 -1.47495185e-13j] [18188.38448046+2.52346507e-13j 16766.6353141 -2.62107796e-13j 15367.90582146+5.41014834e-13j ... 15406.77456246-3.15707232e-13j 16393.15766271-1.86350553e-13j 17448.60630611+1.01507931e-13j] ... [15790.34906138+3.90242684e-14j 16095.50953031+6.30302734e-13j 15348.45009977-6.25944072e-14j ... 13713.6787305 -9.66946263e-14j 14075.37584403-1.11607439e-13j 14792.18153687-9.42044799e-14j] [17203.53194431-2.76464625e-13j 17125.34826047+1.52344189e-13j 16335.69064004-1.85375703e-14j ... 14417.97132554-3.65322795e-13j 14683.08424583-1.38025902e-13j 15871.23236642-7.42439419e-13j] [18881.37870017-5.96789051e-13j 18217.39284742+7.88782888e-13j 17051.89481222+1.00578429e-13j ... 15645.41256661-7.52723174e-13j 15263.42569266-7.75953947e-14j 16778.70433633-1.24180502e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541533.058486901-1.2924697071141057e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541533.058486901-1.2924697071141057e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541533.171351721: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541533.171351721: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541533.058486901: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541533.058486901: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000172535732: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000172535732: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21334.06184402-1.23677057e-13j 19947.8880959 +2.04031801e-14j 17507.24362534+7.72601917e-14j ... 16282.43634439-2.38420908e-13j 16324.25984652-2.62810899e-13j 18474.33227047-1.57042184e-13j] [20742.50298059-7.01971569e-14j 18987.24154184+1.27063711e-13j 16433.89973884+1.09894137e-13j ... 16059.9504489 -2.40093498e-14j 16841.34689448-1.47655848e-13j 18671.88540092+3.37256793e-14j] [18193.47389253-1.01472596e-13j 16772.96191549+2.69093138e-13j 15379.90154034+2.08266509e-13j ... 15406.62825518+1.69030942e-13j 16406.93827111-6.18605315e-14j 17454.24608791+1.62702047e-13j] ... [15755.61787494-9.44418727e-14j 16081.67255983-2.72028679e-13j 15360.10585633+7.96119545e-14j ... 13692.87389743-5.97365604e-13j 14064.51868858+8.60161504e-14j 14761.4560449 -2.48796132e-13j] [17192.2412176 +8.67401550e-14j 17130.14388525+8.32810230e-14j 16334.79747921-5.59499068e-13j ... 14461.65371683-5.90842780e-13j 14702.23777755-2.75665970e-13j 15861.14718654-1.99755821e-13j] [18886.50417799-2.29079343e-13j 18231.73301583-2.83675122e-14j 17062.74602443+2.79454937e-13j ... 15650.88346447-1.96214212e-13j 15258.10497342-2.80870399e-13j 16771.79166353+6.70295319e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21334.06184402-1.23677057e-13j 19947.8880959 +2.04031801e-14j 17507.24362534+7.72601917e-14j ... 16282.43634439-2.38420908e-13j 16324.25984652-2.62810899e-13j 18474.33227047-1.57042184e-13j] [20742.50298059-7.01971569e-14j 18987.24154184+1.27063711e-13j 16433.89973884+1.09894137e-13j ... 16059.9504489 -2.40093498e-14j 16841.34689448-1.47655848e-13j 18671.88540092+3.37256793e-14j] [18193.47389253-1.01472596e-13j 16772.96191549+2.69093138e-13j 15379.90154034+2.08266509e-13j ... 15406.62825518+1.69030942e-13j 16406.93827111-6.18605315e-14j 17454.24608791+1.62702047e-13j] ... [15755.61787494-9.44418727e-14j 16081.67255983-2.72028679e-13j 15360.10585633+7.96119545e-14j ... 13692.87389743-5.97365604e-13j 14064.51868858+8.60161504e-14j 14761.4560449 -2.48796132e-13j] [17192.2412176 +8.67401550e-14j 17130.14388525+8.32810230e-14j 16334.79747921-5.59499068e-13j ... 14461.65371683-5.90842780e-13j 14702.23777755-2.75665970e-13j 15861.14718654-1.99755821e-13j] [18886.50417799-2.29079343e-13j 18231.73301583-2.83675122e-14j 17062.74602443+2.79454937e-13j ... 15650.88346447-1.96214212e-13j 15258.10497342-2.80870399e-13j 16771.79166353+6.70295319e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541851.368122388-2.5849394142282115e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541851.368122388-2.5849394142282115e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541851.480992696: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541851.480992696: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541851.368122388: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541851.368122388: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000172535728: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000172535728: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44397344+0.j -0.42313697-0.00852214j 0.36548572+0.01488494j ... -0.28411002+0.01765761j 0.36548572-0.01488494j -0.42313697+0.00852214j] [-0.42262077-0.00270747j 0.40226237+0.01059255j -0.34694376-0.01613847j ... 0.270858 -0.01520517j -0.34848237+0.01198423j 0.4032048 -0.0055175j ] [ 0.3635941 +0.00471179j -0.34548706-0.01119276j 0.29725917+0.01542575j ... -0.23300286+0.01144364j 0.30014985-0.00820876j -0.34724061+0.00236399j] ... [-0.28039546+0.00556922j 0.26817477-0.00019238j -0.23195223-0.00449178j ... 0.17569877-0.01332186j -0.22805462+0.01302374j 0.26584851-0.01024384j] [ 0.3635941 -0.00471179j -0.34724061-0.00236399j 0.30014985+0.00820876j ... -0.22994926+0.01648909j 0.29725917-0.01542575j -0.34548706+0.01119276j] [-0.42262077+0.00270747j 0.4032048 +0.0055175j -0.34848237-0.01198423j ... 0.26926941-0.01811954j -0.34694376+0.01613847j 0.40226237-0.01059255j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21324.26026463-1.05692626e-13j 19934.23961505+5.71257018e-14j 17520.95658937+1.64004643e-13j ... 16278.41006912-1.74178530e-13j 16323.6289288 -9.49796207e-14j 18469.98889418-5.60416550e-14j] [20736.68486968+6.89460785e-14j 18966.50065968+1.54480972e-13j 16424.33534204+2.20245380e-13j ... 16098.67918309+1.94699254e-14j 16874.80534849+1.52614010e-13j 18680.67878917+9.37999204e-14j] [18201.76696386+1.04139526e-13j 16785.67167115+2.68068076e-13j 15392.5004579 +4.02147482e-13j ... 15400.44285898+1.40042725e-14j 16414.5890624 +2.81385985e-13j 17458.18867878+8.82873382e-14j] ... [15715.62639913-5.53989002e-14j 16068.59163763-2.44209387e-13j 15369.22002033-2.62821929e-13j ... 13672.15771765+1.46560513e-13j 14055.06707003-2.86749732e-13j 14731.52945029-1.44312970e-13j] [17177.81153363-7.34961584e-14j 17134.96111203-4.76021937e-13j 16334.28940534+4.30665969e-13j ... 14506.74337191-2.08565495e-13j 14717.95214234-4.79453842e-14j 15851.01257783-3.61998443e-13j] [18896.10747071-7.76033607e-14j 18247.25233559-3.09307676e-13j 17070.94004808-9.57078571e-15j ... 15655.62820044-3.56835782e-13j 15254.10419228+2.79008617e-13j 16771.25692947-5.17993362e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21324.26026463-1.05692626e-13j 19934.23961505+5.71257018e-14j 17520.95658937+1.64004643e-13j ... 16278.41006912-1.74178530e-13j 16323.6289288 -9.49796207e-14j 18469.98889418-5.60416550e-14j] [20736.68486968+6.89460785e-14j 18966.50065968+1.54480972e-13j 16424.33534204+2.20245380e-13j ... 16098.67918309+1.94699254e-14j 16874.80534849+1.52614010e-13j 18680.67878917+9.37999204e-14j] [18201.76696386+1.04139526e-13j 16785.67167115+2.68068076e-13j 15392.5004579 +4.02147482e-13j ... 15400.44285898+1.40042725e-14j 16414.5890624 +2.81385985e-13j 17458.18867878+8.82873382e-14j] ... [15715.62639913-5.53989002e-14j 16068.59163763-2.44209387e-13j 15369.22002033-2.62821929e-13j ... 13672.15771765+1.46560513e-13j 14055.06707003-2.86749732e-13j 14731.52945029-1.44312970e-13j] [17177.81153363-7.34961584e-14j 17134.96111203-4.76021937e-13j 16334.28940534+4.30665969e-13j ... 14506.74337191-2.08565495e-13j 14717.95214234-4.79453842e-14j 15851.01257783-3.61998443e-13j] [18896.10747071-7.76033607e-14j 18247.25233559-3.09307676e-13j 17070.94004808-9.57078571e-15j ... 15655.62820044-3.56835782e-13j 15254.10419228+2.79008617e-13j 16771.25692947-5.17993362e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517876: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6542505.073950092+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6542505.073950092+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6542505.186831681: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6542505.186831681: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6542505.073950092: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6542505.073950092: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000017253573: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000017253573: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=40, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=40, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (-0.2550097372675405, -0.08019507942774762) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (-0.2550097372675405, -0.08019507942774762) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00104776 0.00102291 0.00099806 ... 0.00104185 0.00106565 0.00108939] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00104776 0.00102291 0.00099806 ... 0.00104185 0.00106565 0.00108939] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00104189 0.00101682 0.00099177 ... 0.00103813 0.00106218 0.00108617] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00104189 0.00101682 0.00099177 ... 0.00103813 0.00106218 0.00108617] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00103556 0.00101029 0.00098504 ... 0.00103397 0.00105825 0.0010825 ] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00103556 0.00101029 0.00098504 ... 0.00103397 0.00105825 0.0010825 ] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00095467 0.00093077 0.00090692 ... 0.00113606 0.00116074 0.00118532] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00095467 0.00093077 0.00090692 ... 0.00113606 0.00116074 0.00118532] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00095887 0.00093519 0.00091153 ... 0.00114072 0.00116515 0.00118946] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00095887 0.00093519 0.00091153 ... 0.00114072 0.00116515 0.00118946] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00096264 0.00093917 0.00091573 ... 0.00114491 0.00116907 0.00119311]] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00096264 0.00093917 0.00091573 ... 0.00114491 0.00116907 0.00119311]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] INFO stpipe.Ami3Pipeline.ami_analyze:step.py:546 Step ami_analyze done INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw00793025001_03102_00002_nis_c1014_ami.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:98 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00003_nis_cal.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:98 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00003_nis_cal.fits INFO stpipe.Ami3Pipeline.ami_analyze:step.py:430 Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00003_nis_cal.fits',). INFO stpipe.Ami3Pipeline.ami_analyze:step.py:434 Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:45 Oversampling factor = 3 INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:46 Initial rotation guess = 1.49 deg INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:47 Initial values to use for psf offset = [0.0, 0.0] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:61 Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21268.40480356-1.81436014e-13j 19918.92936497-7.23690826e-14j 17415.86811049+2.58357944e-14j ... 16331.71535992-1.30429161e-13j 16356.11777759-1.92681048e-13j 18424.74848975-2.16743346e-13j] [20631.48968114-1.40316841e-13j 19051.40446548+6.17211635e-14j 16491.19301127+1.30695430e-13j ... 15838.36740341-3.05865919e-14j 16633.65949172+1.32754711e-14j 18480.08959138-7.21264629e-14j] [18112.88997434+1.24985541e-13j 16758.14357331+2.65138717e-13j 15289.05303939+1.19094528e-13j ... 15287.01056481-7.93589018e-14j 16191.62119871+1.09715948e-13j 17305.6692363 +9.63395468e-14j] ... [15844.98602989+6.23259860e-15j 16118.71695123+1.30393546e-13j 15237.28980348+4.13000533e-15j ... 13710.13111823-9.41510424e-14j 14095.56868838-7.57274027e-13j 14845.33415884-5.06273559e-14j] [17156.91693256-3.22956663e-13j 17043.45651883-2.71621329e-13j 16270.75923896+3.96185518e-13j ... 14192.40052249+5.59905380e-13j 14534.3191735 -1.11500171e-13j 15838.48126811-7.03904235e-13j] [18855.04392514-1.94999507e-13j 18124.79694925-2.70966785e-14j 16932.01429957+1.46763715e-13j ... 15562.14216345-3.19766903e-13j 15233.41492483-1.26894368e-13j 16792.24728436+5.18572582e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21268.40480356-1.81436014e-13j 19918.92936497-7.23690826e-14j 17415.86811049+2.58357944e-14j ... 16331.71535992-1.30429161e-13j 16356.11777759-1.92681048e-13j 18424.74848975-2.16743346e-13j] [20631.48968114-1.40316841e-13j 19051.40446548+6.17211635e-14j 16491.19301127+1.30695430e-13j ... 15838.36740341-3.05865919e-14j 16633.65949172+1.32754711e-14j 18480.08959138-7.21264629e-14j] [18112.88997434+1.24985541e-13j 16758.14357331+2.65138717e-13j 15289.05303939+1.19094528e-13j ... 15287.01056481-7.93589018e-14j 16191.62119871+1.09715948e-13j 17305.6692363 +9.63395468e-14j] ... [15844.98602989+6.23259860e-15j 16118.71695123+1.30393546e-13j 15237.28980348+4.13000533e-15j ... 13710.13111823-9.41510424e-14j 14095.56868838-7.57274027e-13j 14845.33415884-5.06273559e-14j] [17156.91693256-3.22956663e-13j 17043.45651883-2.71621329e-13j 16270.75923896+3.96185518e-13j ... 14192.40052249+5.59905380e-13j 14534.3191735 -1.11500171e-13j 15838.48126811-7.03904235e-13j] [18855.04392514-1.94999507e-13j 18124.79694925-2.70966785e-14j 16932.01429957+1.46763715e-13j ... 15562.14216345-3.19766903e-13j 15233.41492483-1.26894368e-13j 16792.24728436+5.18572582e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6515622.588484816+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6515622.588484816+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6515622.561507518: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6515622.561507518: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6515622.588484816: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6515622.588484816: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595979: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595979: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21279.52575954-9.53999879e-14j 19926.69238074-1.06032199e-13j 17416.32929201+1.91583807e-14j ... 16305.03814533-8.82290349e-14j 16326.04487726-2.88131231e-13j 18410.77141011-2.49803237e-13j] [20643.63355705+7.22994434e-14j 19025.90028848-8.40300773e-14j 16456.00037012+1.00404733e-13j ... 15856.38958727-6.16300530e-14j 16647.90562905-1.19811626e-13j 18496.59324667-1.14010616e-13j] [18115.7099522 +4.37507064e-13j 16743.2834382 +1.20453298e-13j 15287.99158407+7.68899780e-14j ... 15301.2428198 -2.82769916e-14j 16229.37150975+3.37358013e-13j 17324.52419471+1.89845081e-13j] ... [15817.77604926-1.20050878e-13j 16096.02241868-3.32435459e-13j 15262.50283868-1.19542557e-13j ... 13699.02537464-6.79130219e-13j 14072.94077871-1.89208929e-13j 14826.09524959-1.19843469e-13j] [17156.47708787-3.21582163e-13j 17048.22170921+2.66414839e-13j 16285.26566113-1.88573618e-13j ... 14238.09809643-4.82757402e-13j 14552.49363896-5.95328037e-13j 15830.40619437-3.83432031e-13j] [18849.51270342+5.65435063e-13j 18140.83230133-2.47353155e-13j 16956.5864502 -1.99475776e-13j ... 15580.38581858+2.40714328e-13j 15223.49824497-3.54060655e-13j 16760.94734689-1.32764114e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21279.52575954-9.53999879e-14j 19926.69238074-1.06032199e-13j 17416.32929201+1.91583807e-14j ... 16305.03814533-8.82290349e-14j 16326.04487726-2.88131231e-13j 18410.77141011-2.49803237e-13j] [20643.63355705+7.22994434e-14j 19025.90028848-8.40300773e-14j 16456.00037012+1.00404733e-13j ... 15856.38958727-6.16300530e-14j 16647.90562905-1.19811626e-13j 18496.59324667-1.14010616e-13j] [18115.7099522 +4.37507064e-13j 16743.2834382 +1.20453298e-13j 15287.99158407+7.68899780e-14j ... 15301.2428198 -2.82769916e-14j 16229.37150975+3.37358013e-13j 17324.52419471+1.89845081e-13j] ... [15817.77604926-1.20050878e-13j 16096.02241868-3.32435459e-13j 15262.50283868-1.19542557e-13j ... 13699.02537464-6.79130219e-13j 14072.94077871-1.89208929e-13j 14826.09524959-1.19843469e-13j] [17156.47708787-3.21582163e-13j 17048.22170921+2.66414839e-13j 16285.26566113-1.88573618e-13j ... 14238.09809643-4.82757402e-13j 14552.49363896-5.95328037e-13j 15830.40619437-3.83432031e-13j] [18849.51270342+5.65435063e-13j 18140.83230133-2.47353155e-13j 16956.5864502 -1.99475776e-13j ... 15580.38581858+2.40714328e-13j 15223.49824497-3.54060655e-13j 16760.94734689-1.32764114e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6514940.1985397+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6514940.1985397+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6514940.1715652235: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6514940.1715652235: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6514940.1985397: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6514940.1985397: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595972: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595972: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21287.64601284-6.61291355e-15j 19931.84481652+6.90105918e-14j 17421.01111574+2.05457736e-13j ... 16280.05639394+9.33995925e-15j 16300.44077796-3.30632466e-13j 18399.41430617-3.29593571e-13j] [20652.34868959+8.72144815e-14j 19001.05977258+1.53669817e-14j 16424.87083308+1.94777041e-13j ... 15881.48310431+1.96255059e-14j 16668.59669764-8.82144341e-14j 18513.09288456-2.64806097e-13j] [18117.31158334+1.13291173e-13j 16731.9530973 -5.97752791e-14j 15291.58006131+3.96416096e-13j ... 15313.7257933 +1.01488470e-13j 16262.26497371+7.54316048e-14j 17339.02648728-4.09355851e-14j] ... [15791.99136671-1.28291917e-13j 16075.45721703+5.20452884e-13j 15284.30333176-7.30684463e-14j ... 13686.34816802+3.96095203e-14j 14053.21996465-7.55554343e-13j 14802.59270266-1.92056541e-13j] [17154.10638846-2.88173740e-14j 17052.41513836+4.53123336e-13j 16293.65215737+3.22629443e-14j ... 14283.04475736+4.59220871e-13j 14573.25932237-1.45382484e-13j 15821.09965375-7.64627219e-14j] [18844.80433929-3.71304973e-14j 18155.32049207+6.47426017e-13j 16977.98738566+3.58097280e-13j ... 15594.43394591-2.73995697e-13j 15215.0405907 -8.55300759e-13j 16734.39357971+2.35844589e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21287.64601284-6.61291355e-15j 19931.84481652+6.90105918e-14j 17421.01111574+2.05457736e-13j ... 16280.05639394+9.33995925e-15j 16300.44077796-3.30632466e-13j 18399.41430617-3.29593571e-13j] [20652.34868959+8.72144815e-14j 19001.05977258+1.53669817e-14j 16424.87083308+1.94777041e-13j ... 15881.48310431+1.96255059e-14j 16668.59669764-8.82144341e-14j 18513.09288456-2.64806097e-13j] [18117.31158334+1.13291173e-13j 16731.9530973 -5.97752791e-14j 15291.58006131+3.96416096e-13j ... 15313.7257933 +1.01488470e-13j 16262.26497371+7.54316048e-14j 17339.02648728-4.09355851e-14j] ... [15791.99136671-1.28291917e-13j 16075.45721703+5.20452884e-13j 15284.30333176-7.30684463e-14j ... 13686.34816802+3.96095203e-14j 14053.21996465-7.55554343e-13j 14802.59270266-1.92056541e-13j] [17154.10638846-2.88173740e-14j 17052.41513836+4.53123336e-13j 16293.65215737+3.22629443e-14j ... 14283.04475736+4.59220871e-13j 14573.25932237-1.45382484e-13j 15821.09965375-7.64627219e-14j] [18844.80433929-3.71304973e-14j 18155.32049207+6.47426017e-13j 16977.98738566+3.58097280e-13j ... 15594.43394591-2.73995697e-13j 15215.0405907 -8.55300759e-13j 16734.39357971+2.35844589e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6514508.2425897345-1.2924697071141057e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6514508.2425897345-1.2924697071141057e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6514508.2156170495: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6514508.2156170495: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6514508.2425897345: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6514508.2425897345: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595976: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595976: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21291.90861368+1.03252807e-14j 19933.14736665+5.45546558e-14j 17429.15012465+2.01775584e-13j ... 16258.48840261-1.20620314e-14j 16280.22436628-2.48525272e-13j 18390.43527701-1.33459623e-13j] [20657.41174488+8.11487157e-14j 18977.14033312+4.44856189e-14j 16398.32023581+3.13130535e-13j ... 15912.59724015+1.26478895e-13j 16694.79234137-1.18883663e-13j 18528.81756496+4.52036004e-14j] [18118.87211542+1.14686245e-13j 16725.66956535+1.96663203e-13j 15299.08240059+3.80521491e-13j ... 15322.84480655+1.16168728e-13j 16289.14360124+7.26067375e-14j 17349.7506763 +4.20803213e-15j] ... [15765.1369324 -1.65509105e-14j 16057.49538547+2.70383217e-13j 15302.35669705-4.46646012e-14j ... 13670.93338833-2.50007004e-13j 14036.94084837-2.91490556e-13j 14775.47206135-1.10932977e-13j] [17149.05910856+7.09826776e-14j 17056.71229158+2.71570470e-13j 16297.2564298 +3.00930466e-14j ... 14327.22617229-3.05431445e-13j 14595.25943643-2.81674701e-13j 15811.14967414-2.79019132e-13j] [18842.22332982-2.00971064e-13j 18169.06957355-1.03455781e-13j 16995.92514378+5.09789885e-13j ... 15604.5231835 +3.30453771e-13j 15207.57849654-1.95195102e-13j 16713.7286957 -1.44239667e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21291.90861368+1.03252807e-14j 19933.14736665+5.45546558e-14j 17429.15012465+2.01775584e-13j ... 16258.48840261-1.20620314e-14j 16280.22436628-2.48525272e-13j 18390.43527701-1.33459623e-13j] [20657.41174488+8.11487157e-14j 18977.14033312+4.44856189e-14j 16398.32023581+3.13130535e-13j ... 15912.59724015+1.26478895e-13j 16694.79234137-1.18883663e-13j 18528.81756496+4.52036004e-14j] [18118.87211542+1.14686245e-13j 16725.66956535+1.96663203e-13j 15299.08240059+3.80521491e-13j ... 15322.84480655+1.16168728e-13j 16289.14360124+7.26067375e-14j 17349.7506763 +4.20803213e-15j] ... [15765.1369324 -1.65509105e-14j 16057.49538547+2.70383217e-13j 15302.35669705-4.46646012e-14j ... 13670.93338833-2.50007004e-13j 14036.94084837-2.91490556e-13j 14775.47206135-1.10932977e-13j] [17149.05910856+7.09826776e-14j 17056.71229158+2.71570470e-13j 16297.2564298 +3.00930466e-14j ... 14327.22617229-3.05431445e-13j 14595.25943643-2.81674701e-13j 15811.14967414-2.79019132e-13j] [18842.22332982-2.00971064e-13j 18169.06957355-1.03455781e-13j 16995.92514378+5.09789885e-13j ... 15604.5231835 +3.30453771e-13j 15207.57849654-1.95195102e-13j 16713.7286957 -1.44239667e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6514375.97196918+1.1309109937248425e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6514375.97196918+1.1309109937248425e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6514375.944997043: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6514375.944997043: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6514375.97196918: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6514375.97196918: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595979: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595979: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21291.72490282-2.24430482e-14j 19929.63078952+7.40497706e-14j 17439.84143705+1.39144790e-13j ... 16241.9351188 -1.05772763e-13j 16266.2520646 -1.43328532e-13j 18383.55696519-9.23702652e-15j] [20658.82765672+7.21908450e-14j 18954.26218268+8.35920936e-14j 16376.85981763+3.17777301e-13j ... 15948.11554155+8.41968756e-14j 16725.1796571 -7.13759874e-14j 18543.05978359+1.27021884e-13j] [18121.5812034 +3.15064751e-13j 16725.48346187+1.98394749e-13j 15309.43875685+1.84663934e-13j ... 15327.29919003-2.88898186e-14j 16309.39777209+1.49770346e-13j 17357.36945692+5.73763550e-14j] ... [15735.04723489+1.94840540e-13j 16042.00257423+3.13968898e-13j 15316.78105261-5.87978820e-13j ... 13652.6558345 -1.80074275e-16j 14023.95579611-3.15037154e-13j 14746.01822476+1.15586896e-14j] [17140.8786677 -2.06332363e-13j 17061.4295398 -1.72660327e-13j 16297.7846484 -1.14916092e-13j ... 14371.08908216-6.92598788e-14j 14616.81662228-8.33764887e-14j 15801.03094219-2.24860880e-13j] [18842.89145366-7.51247327e-13j 18182.84670738+3.73054143e-13j 17010.44357483+4.47055548e-13j ... 15611.40309467+3.60177642e-13j 15200.86318337-2.29375787e-14j 16699.60582189-9.65349751e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21291.72490282-2.24430482e-14j 19929.63078952+7.40497706e-14j 17439.84143705+1.39144790e-13j ... 16241.9351188 -1.05772763e-13j 16266.2520646 -1.43328532e-13j 18383.55696519-9.23702652e-15j] [20658.82765672+7.21908450e-14j 18954.26218268+8.35920936e-14j 16376.85981763+3.17777301e-13j ... 15948.11554155+8.41968756e-14j 16725.1796571 -7.13759874e-14j 18543.05978359+1.27021884e-13j] [18121.5812034 +3.15064751e-13j 16725.48346187+1.98394749e-13j 15309.43875685+1.84663934e-13j ... 15327.29919003-2.88898186e-14j 16309.39777209+1.49770346e-13j 17357.36945692+5.73763550e-14j] ... [15735.04723489+1.94840540e-13j 16042.00257423+3.13968898e-13j 15316.78105261-5.87978820e-13j ... 13652.6558345 -1.80074275e-16j 14023.95579611-3.15037154e-13j 14746.01822476+1.15586896e-14j] [17140.8786677 -2.06332363e-13j 17061.4295398 -1.72660327e-13j 16297.7846484 -1.14916092e-13j ... 14371.08908216-6.92598788e-14j 14616.81662228-8.33764887e-14j 15801.03094219-2.24860880e-13j] [18842.89145366-7.51247327e-13j 18182.84670738+3.73054143e-13j 17010.44357483+4.47055548e-13j ... 15611.40309467+3.60177642e-13j 15200.86318337-2.29375787e-14j 16699.60582189-9.65349751e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6514496.007631019-6.058451752097371e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6514496.007631019-6.058451752097371e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6514495.980658385: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6514495.980658385: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6514496.007631019: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6514496.007631019: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595978: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595978: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21286.83274932-1.77550972e-14j 19920.70376754+9.45445575e-14j 17452.08352085+2.54703974e-13j ... 16231.63555141-2.67192657e-13j 16259.19789045-3.35956764e-13j 18378.48559618-2.22570617e-13j] [20656.81859567+4.68111681e-14j 18932.43702282+2.07911967e-13j 16360.97346905+2.91716027e-13j ... 15986.0324839 -2.25459297e-13j 16758.20542247-2.26389855e-13j 18555.24961479+9.10650147e-15j] [18126.51006858+2.26493968e-13j 16731.8338406 +2.23330428e-13j 15321.50253651+3.62950718e-13j ... 15326.24077402-3.01748349e-13j 16322.9805085 -1.30565505e-13j 17362.59977555+2.61486622e-13j] ... [15700.21028301+2.40224709e-15j 16028.29051314-6.74233433e-14j 15328.09387063-1.95484515e-14j ... 13632.57405683-6.56001651e-13j 14013.4830921 -1.74854829e-13j 14715.8395062 -8.04166940e-14j] [17129.44189572+3.51908019e-13j 17066.51856771+5.78131353e-13j 16297.0885849 +3.99546927e-13j ... 14415.46937186-4.33520415e-13j 14636.24019077-5.32118928e-13j 15790.97327185-3.82844764e-13j] [18847.63236961-4.20066739e-14j 18197.29985575-4.68976766e-13j 17021.90136564+7.87638407e-13j ... 15616.25239196-1.60028746e-13j 15194.98499782-5.71030793e-13j 16692.14767142+4.11227784e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21286.83274932-1.77550972e-14j 19920.70376754+9.45445575e-14j 17452.08352085+2.54703974e-13j ... 16231.63555141-2.67192657e-13j 16259.19789045-3.35956764e-13j 18378.48559618-2.22570617e-13j] [20656.81859567+4.68111681e-14j 18932.43702282+2.07911967e-13j 16360.97346905+2.91716027e-13j ... 15986.0324839 -2.25459297e-13j 16758.20542247-2.26389855e-13j 18555.24961479+9.10650147e-15j] [18126.51006858+2.26493968e-13j 16731.8338406 +2.23330428e-13j 15321.50253651+3.62950718e-13j ... 15326.24077402-3.01748349e-13j 16322.9805085 -1.30565505e-13j 17362.59977555+2.61486622e-13j] ... [15700.21028301+2.40224709e-15j 16028.29051314-6.74233433e-14j 15328.09387063-1.95484515e-14j ... 13632.57405683-6.56001651e-13j 14013.4830921 -1.74854829e-13j 14715.8395062 -8.04166940e-14j] [17129.44189572+3.51908019e-13j 17066.51856771+5.78131353e-13j 16297.0885849 +3.99546927e-13j ... 14415.46937186-4.33520415e-13j 14636.24019077-5.32118928e-13j 15790.97327185-3.82844764e-13j] [18847.63236961-4.20066739e-14j 18197.29985575-4.68976766e-13j 17021.90136564+7.87638407e-13j ... 15616.25239196-1.60028746e-13j 15194.98499782-5.71030793e-13j 16692.14767142+4.11227784e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6514813.001649244-6.462348535570529e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6514813.001649244-6.462348535570529e-27j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6514812.974675296: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6514812.974675296: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6514813.001649244: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6514813.001649244: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595975: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595975: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44213844+0.j -0.42142 -0.00812433j 0.36408976+0.01418476j ... -0.28315073+0.01681439j 0.36408976-0.01418476j -0.42142 +0.00812433j] [-0.42089724-0.00303709j 0.4006326 +0.01052661j -0.34559997-0.01573249j ... 0.27001052-0.01422766j -0.34720745+0.01106537j 0.40161018-0.00483097j] [ 0.36217445+0.00527262j -0.34412834-0.01140472j 0.29612303+0.01530615j ... -0.23236582+0.01045827j 0.29913977-0.00721093j -0.3459463 +0.00151843j] ... [-0.27939169+0.00619947j 0.26728105-0.00102249j -0.23128442-0.00357597j ... 0.17508534-0.0131781j -0.22722361+0.0131106j 0.26487134-0.01060659j] [ 0.36217445-0.00527262j -0.3459463 -0.00151843j 0.29913977+0.00721093j ... -0.22913 +0.01612373j 0.29612303-0.01530615j -0.34412834+0.01140472j] [-0.42089724+0.00303709j 0.40161018+0.00483097j -0.34720745-0.01106537j ... 0.26832221-0.01750054j -0.34559997+0.01573249j 0.4006326 -0.01052661j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21277.32268875+8.07992983e-15j 19906.2319478 +3.40057955e-14j 17464.84613609+1.44142857e-13j ... 16228.27832534-2.30432959e-13j 16259.45078013+5.10900851e-14j 18374.93790678-4.00467122e-13j] [20651.79016214+5.39835283e-14j 18911.61081638+7.03531777e-14j 16351.07149358+2.40329367e-13j ... 16024.18354818-1.22144764e-13j 16792.23426189+4.55160968e-14j 18565.01879295-2.43141767e-13j] [18134.48000938+1.71282714e-13j 16744.47982002+5.62102560e-14j 15334.2798154 +4.07820826e-13j ... 15319.33023019-1.53272475e-14j 16330.35273644+1.15483021e-13j 17366.1540242 -3.18730775e-14j] ... [15659.97612269-3.73146176e-13j 16015.25745804-2.34373094e-13j 15337.11174075-4.38877270e-14j ... 13612.86033802-4.75838303e-13j 14004.30598667-3.44199610e-14j 14686.51045572-1.50285065e-13j] [17114.94657863-3.34694409e-13j 17071.61834952+2.19935365e-13j 16296.94065791+4.00812176e-13j ... 14461.44795141-2.88559567e-13j 14652.1656865 -6.65935555e-14j 15780.88803378-9.40776839e-13j] [18856.87331836-5.16911693e-13j 18212.89536564-8.95189378e-14j 17030.91125535+3.07746811e-13j ... 15620.51036573+1.89527422e-13j 15190.42286664-6.21755366e-14j 16690.95838613-1.48217699e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21277.32268875+8.07992983e-15j 19906.2319478 +3.40057955e-14j 17464.84613609+1.44142857e-13j ... 16228.27832534-2.30432959e-13j 16259.45078013+5.10900851e-14j 18374.93790678-4.00467122e-13j] [20651.79016214+5.39835283e-14j 18911.61081638+7.03531777e-14j 16351.07149358+2.40329367e-13j ... 16024.18354818-1.22144764e-13j 16792.23426189+4.55160968e-14j 18565.01879295-2.43141767e-13j] [18134.48000938+1.71282714e-13j 16744.47982002+5.62102560e-14j 15334.2798154 +4.07820826e-13j ... 15319.33023019-1.53272475e-14j 16330.35273644+1.15483021e-13j 17366.1540242 -3.18730775e-14j] ... [15659.97612269-3.73146176e-13j 16015.25745804-2.34373094e-13j 15337.11174075-4.38877270e-14j ... 13612.86033802-4.75838303e-13j 14004.30598667-3.44199610e-14j 14686.51045572-1.50285065e-13j] [17114.94657863-3.34694409e-13j 17071.61834952+2.19935365e-13j 16296.94065791+4.00812176e-13j ... 14461.44795141-2.88559567e-13j 14652.1656865 -6.65935555e-14j 15780.88803378-9.40776839e-13j] [18856.87331836-5.16911693e-13j 18212.89536564-8.95189378e-14j 17030.91125535+3.07746811e-13j ... 15620.51036573+1.89527422e-13j 15190.42286664-6.21755366e-14j 16690.95838613-1.48217699e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.371075: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6515464.005621351+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6515464.005621351+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6515463.978644709: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6515463.978644709: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6515464.005621351: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6515464.005621351: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595976: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999958595976: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=40, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=40, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (-0.24632638044576569, -0.09072323047893169) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (-0.24632638044576569, -0.09072323047893169) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00106043 0.00103544 0.00101045 ... 0.00102758 0.0010513 0.00107497] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00106043 0.00103544 0.00101045 ... 0.00102758 0.0010513 0.00107497] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00105435 0.00102915 0.00100396 ... 0.00102394 0.00104791 0.00107183] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00105435 0.00102915 0.00100396 ... 0.00102394 0.00104791 0.00107183] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00104782 0.00102242 0.00099703 ... 0.00101986 0.00104406 0.00106823] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00104782 0.00102242 0.00099703 ... 0.00101986 0.00104406 0.00106823] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00094629 0.00092255 0.00089885 ... 0.00114555 0.0011703 0.00119494] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00094629 0.00092255 0.00089885 ... 0.00114555 0.0011703 0.00119494] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00095027 0.00092674 0.00090324 ... 0.00115035 0.00117483 0.00119921] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00095027 0.00092674 0.00090324 ... 0.00115035 0.00117483 0.00119921] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00095382 0.00093051 0.00090722 ... 0.00115466 0.00117888 0.00120298]] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00095382 0.00093051 0.00090722 ... 0.00115466 0.00117888 0.00120298]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] INFO stpipe.Ami3Pipeline.ami_analyze:step.py:546 Step ami_analyze done INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw00793025001_03102_00003_nis_c1014_ami.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:98 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00001_nis_cal.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:98 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00001_nis_cal.fits INFO stpipe.Ami3Pipeline.ami_analyze:step.py:430 Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw00793025001_03102_00001_nis_cal.fits',). INFO stpipe.Ami3Pipeline.ami_analyze:step.py:434 Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 1.49, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:45 Oversampling factor = 3 INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:46 Initial rotation guess = 1.49 deg INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:47 Initial values to use for psf offset = [0.0, 0.0] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:61 Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21321.72517085+2.38716967e-14j 19964.6973788 +1.39008313e-13j 17473.81744204+2.47656785e-13j ... 16377.04108008-2.25280987e-14j 16416.27949924-2.16504827e-13j 18504.12463452-2.20242973e-13j] [20704.30385398+2.05046441e-13j 19106.6587147 +2.62014094e-13j 16560.7208679 +3.71393723e-13j ... 15891.27298654+8.30347973e-14j 16700.60080864-9.92477449e-14j 18572.46988571-7.32770295e-14j] [18179.12012176+2.72561654e-13j 16802.28666675+3.05541767e-13j 15340.08704646+1.49957159e-13j ... 15346.12075041+5.07466210e-14j 16260.25536991-5.28857090e-14j 17387.61023892-1.59619365e-14j] ... [15886.77252358-2.38151549e-13j 16167.69481591-1.25735480e-13j 15274.1126645 +4.05472618e-14j ... 13761.49307855-3.65147993e-13j 14143.76890159-3.20827583e-13j 14880.65216042-3.33090006e-14j] [17205.12962713-3.42619319e-14j 17097.34219906-6.74931698e-14j 16310.47776808-1.87967410e-14j ... 14234.95954183-1.42957348e-13j 14591.28447902-1.98141896e-13j 15889.42592254-2.44908466e-13j] [18896.50444424+4.56678604e-13j 18168.05422565-1.83467077e-13j 16972.40801165+3.18505049e-13j ... 15597.43232811+4.40566982e-14j 15288.36229591-4.84141288e-13j 16852.65348165-2.91121329e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21321.72517085+2.38716967e-14j 19964.6973788 +1.39008313e-13j 17473.81744204+2.47656785e-13j ... 16377.04108008-2.25280987e-14j 16416.27949924-2.16504827e-13j 18504.12463452-2.20242973e-13j] [20704.30385398+2.05046441e-13j 19106.6587147 +2.62014094e-13j 16560.7208679 +3.71393723e-13j ... 15891.27298654+8.30347973e-14j 16700.60080864-9.92477449e-14j 18572.46988571-7.32770295e-14j] [18179.12012176+2.72561654e-13j 16802.28666675+3.05541767e-13j 15340.08704646+1.49957159e-13j ... 15346.12075041+5.07466210e-14j 16260.25536991-5.28857090e-14j 17387.61023892-1.59619365e-14j] ... [15886.77252358-2.38151549e-13j 16167.69481591-1.25735480e-13j 15274.1126645 +4.05472618e-14j ... 13761.49307855-3.65147993e-13j 14143.76890159-3.20827583e-13j 14880.65216042-3.33090006e-14j] [17205.12962713-3.42619319e-14j 17097.34219906-6.74931698e-14j 16310.47776808-1.87967410e-14j ... 14234.95954183-1.42957348e-13j 14591.28447902-1.98141896e-13j 15889.42592254-2.44908466e-13j] [18896.50444424+4.56678604e-13j 18168.05422565-1.83467077e-13j 16972.40801165+3.18505049e-13j ... 15597.43232811+4.40566982e-14j 15288.36229591-4.84141288e-13j 16852.65348165-2.91121329e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6542535.048301982+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6542535.048301982+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6542535.131721448: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6542535.131721448: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6542535.048301982: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6542535.048301982: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503277: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503277: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21333.19372181+2.58361072e-14j 19972.66137698+8.85023361e-14j 17474.34772831+2.04373400e-13j ... 16350.41407114-3.07201517e-13j 16385.57859998+1.72739238e-13j 18489.94577462-1.08812230e-13j] [20716.44826416+8.91753799e-14j 19081.46165501+1.77070630e-13j 16525.57144565+2.75013284e-13j ... 15909.63228611-2.32902925e-13j 16714.7304297 +2.40116568e-13j 18588.8994992 +9.10536015e-15j] [18181.67973761+2.16794467e-13j 16787.41794351+2.03965531e-13j 15339.53753656+2.39900537e-13j ... 15360.77591655+3.47471749e-14j 16297.90910118+2.76753257e-13j 17406.44584412+2.10932001e-13j] ... [15859.59182375-1.98492677e-13j 16145.18880861-5.45611130e-14j 15299.14773591+8.55975780e-15j ... 13749.85923702-2.24546303e-13j 14120.84531563+2.35087778e-13j 14861.15457199+1.03774801e-13j] [17205.02375105-5.87067398e-13j 17101.86506385+5.49179317e-13j 16324.66757424+1.57984620e-13j ... 14280.14793929-5.53323716e-13j 14608.93528498-6.96363265e-14j 15881.66007768+2.18175561e-13j] [18891.44070976-9.29011961e-14j 18183.86296078-2.72104069e-14j 16997.03645089-3.36287171e-14j ... 15615.97990885-5.95592007e-13j 15277.83744421+1.88666578e-13j 16821.54652969+1.86924979e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21333.19372181+2.58361072e-14j 19972.66137698+8.85023361e-14j 17474.34772831+2.04373400e-13j ... 16350.41407114-3.07201517e-13j 16385.57859998+1.72739238e-13j 18489.94577462-1.08812230e-13j] [20716.44826416+8.91753799e-14j 19081.46165501+1.77070630e-13j 16525.57144565+2.75013284e-13j ... 15909.63228611-2.32902925e-13j 16714.7304297 +2.40116568e-13j 18588.8994992 +9.10536015e-15j] [18181.67973761+2.16794467e-13j 16787.41794351+2.03965531e-13j 15339.53753656+2.39900537e-13j ... 15360.77591655+3.47471749e-14j 16297.90910118+2.76753257e-13j 17406.44584412+2.10932001e-13j] ... [15859.59182375-1.98492677e-13j 16145.18880861-5.45611130e-14j 15299.14773591+8.55975780e-15j ... 13749.85923702-2.24546303e-13j 14120.84531563+2.35087778e-13j 14861.15457199+1.03774801e-13j] [17205.02375105-5.87067398e-13j 17101.86506385+5.49179317e-13j 16324.66757424+1.57984620e-13j ... 14280.14793929-5.53323716e-13j 14608.93528498-6.96363265e-14j 15881.66007768+2.18175561e-13j] [18891.44070976-9.29011961e-14j 18183.86296078-2.72104069e-14j 16997.03645089-3.36287171e-14j ... 15615.97990885-5.95592007e-13j 15277.83744421+1.88666578e-13j 16821.54652969+1.86924979e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541849.839778636+5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541849.839778636+5.169878828456423e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541849.9231893625: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541849.9231893625: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541849.839778636: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541849.839778636: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503272: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503272: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21341.7107522 +4.23913616e-14j 19978.0927221 +2.96819611e-13j 17479.17481004+3.14676079e-13j ... 16325.48269124+1.35040927e-13j 16359.25841045-1.91948370e-13j 18478.25024161-3.46647023e-13j] [20725.16185888+1.34133498e-13j 19056.86630652+3.03145512e-13j 16494.360688 +3.68165991e-13j ... 15935.22049737+1.97693515e-13j 16735.26866949-1.33390121e-13j 18605.17354668-1.80732471e-13j] [18183.14451156+1.71177233e-13j 16776.20546485+3.96739683e-13j 15343.59484834+2.03653777e-13j ... 15373.61838744+1.62796502e-13j 16330.74748097-2.04993490e-13j 17420.98151564-1.33484202e-13j] ... [15833.91391181+4.60210098e-14j 16124.89383428+3.66919865e-14j 15320.88964213+2.96523819e-13j ... 13736.53807295+3.59903531e-13j 14100.84390515+1.93540611e-13j 14837.36324199-9.83760175e-13j] [17202.9683603 +1.79069087e-13j 17105.77179812+2.76247698e-13j 16332.54418054+2.10555701e-13j ... 14324.58057487+3.59951434e-13j 14629.18827946+2.09239991e-13j 15872.53750849-2.63662034e-13j] [18887.27160386-3.13808705e-13j 18198.16737055+2.95314054e-13j 17018.35027407+2.51157755e-13j ... 15630.38432855+1.73680013e-13j 15268.83634384-1.90371493e-14j 16795.15724612-5.45405110e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21341.7107522 +4.23913616e-14j 19978.0927221 +2.96819611e-13j 17479.17481004+3.14676079e-13j ... 16325.48269124+1.35040927e-13j 16359.25841045-1.91948370e-13j 18478.25024161-3.46647023e-13j] [20725.16185888+1.34133498e-13j 19056.86630652+3.03145512e-13j 16494.360688 +3.68165991e-13j ... 15935.22049737+1.97693515e-13j 16735.26866949-1.33390121e-13j 18605.17354668-1.80732471e-13j] [18183.14451156+1.71177233e-13j 16776.20546485+3.96739683e-13j 15343.59484834+2.03653777e-13j ... 15373.61838744+1.62796502e-13j 16330.74748097-2.04993490e-13j 17420.98151564-1.33484202e-13j] ... [15833.91391181+4.60210098e-14j 16124.89383428+3.66919865e-14j 15320.88964213+2.96523819e-13j ... 13736.53807295+3.59903531e-13j 14100.84390515+1.93540611e-13j 14837.36324199-9.83760175e-13j] [17202.9683603 +1.79069087e-13j 17105.77179812+2.76247698e-13j 16332.54418054+2.10555701e-13j ... 14324.58057487+3.59951434e-13j 14629.18827946+2.09239991e-13j 15872.53750849-2.63662034e-13j] [18887.27160386-3.13808705e-13j 18198.16737055+2.95314054e-13j 17018.35027407+2.51157755e-13j ... 15630.38432855+1.73680013e-13j 15268.83634384-1.90371493e-14j 16795.15724612-5.45405110e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541416.099655788+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541416.099655788+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541416.183060986: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541416.183060986: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541416.099655788: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541416.099655788: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503275: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503275: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21346.36786657+1.46010328e-13j 19979.77102159+1.63865064e-13j 17487.54624238+3.43633889e-13j ... 16303.95931537+1.44499316e-13j 16338.25520786+4.99859821e-14j 18468.80618539+9.84266254e-14j] [20730.20986615+2.13471811e-13j 19033.12655514+2.49145977e-13j 16467.65676913+4.89024436e-13j ... 15966.96232917+2.21937870e-13j 16761.27248117+2.21968186e-13j 18620.5413465 +3.34886710e-13j] [18184.71579336+2.17064602e-13j 16770.13878212+3.68146101e-13j 15351.48614284+3.92483702e-13j ... 15383.03280355+3.74870593e-13j 16357.62526765+3.05892389e-13j 17431.78955547+2.02787590e-13j] ... [15807.22236883+5.35996953e-14j 16107.27084701+4.56019806e-16j 15338.99458611-3.87586987e-13j ... 13720.3368565 +8.78826219e-14j 14084.3010794 -2.01975564e-13j 14809.9140426 -9.40670856e-14j] [17198.19170762+2.56444732e-13j 17109.76222963+6.28319306e-14j 16335.45266111+9.60513165e-14j ... 14368.22610805+5.52320410e-13j 14650.71224834-5.79854259e-15j 15862.65160234-1.91443131e-13j] [18885.27164473+3.20857284e-13j 18211.80648567+2.30794510e-13j 17036.02495541+4.82563361e-13j ... 15640.8407393 -2.22221109e-13j 15260.92983046+5.51761982e-13j 16774.65166077+2.91705084e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21346.36786657+1.46010328e-13j 19979.77102159+1.63865064e-13j 17487.54624238+3.43633889e-13j ... 16303.95931537+1.44499316e-13j 16338.25520786+4.99859821e-14j 18468.80618539+9.84266254e-14j] [20730.20986615+2.13471811e-13j 19033.12655514+2.49145977e-13j 16467.65676913+4.89024436e-13j ... 15966.96232917+2.21937870e-13j 16761.27248117+2.21968186e-13j 18620.5413465 +3.34886710e-13j] [18184.71579336+2.17064602e-13j 16770.13878212+3.68146101e-13j 15351.48614284+3.92483702e-13j ... 15383.03280355+3.74870593e-13j 16357.62526765+3.05892389e-13j 17431.78955547+2.02787590e-13j] ... [15807.22236883+5.35996953e-14j 16107.27084701+4.56019806e-16j 15338.99458611-3.87586987e-13j ... 13720.3368565 +8.78826219e-14j 14084.3010794 -2.01975564e-13j 14809.9140426 -9.40670856e-14j] [17198.19170762+2.56444732e-13j 17109.76222963+6.28319306e-14j 16335.45266111+9.60513165e-14j ... 14368.22610805+5.52320410e-13j 14650.71224834-5.79854259e-15j 15862.65160234-1.91443131e-13j] [18885.27164473+3.20857284e-13j 18211.80648567+2.30794510e-13j 17036.02495541+4.82563361e-13j ... 15640.8407393 -2.22221109e-13j 15260.92983046+5.51761982e-13j 16774.65166077+2.91705084e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541283.282697916+2.4233807008389483e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541283.282697916+2.4233807008389483e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541283.366101421: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541283.366101421: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541283.282697916: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541283.282697916: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503277: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503277: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21346.52262434+1.08678028e-13j 19976.73587451+2.26393569e-13j 17498.55258695+4.07887308e-13j ... 16287.4443567 -6.72164392e-14j 16323.44757553-2.21621827e-13j 18461.35609574-9.37810846e-14j] [20731.58467247+2.62145911e-13j 19010.37385002+2.62539202e-13j 16446.03082882+5.17770588e-13j ... 16003.20855539+5.15940101e-15j 16791.42995123-9.13389223e-14j 18634.32105628+3.48187931e-14j] [18187.59711969+1.90834532e-13j 16770.23725279-6.22644176e-14j 15362.13610091+3.45714818e-13j ... 15387.72894082+2.09075134e-14j 16377.93850563+1.48556777e-14j 17439.53388211+1.19381736e-13j] ... [15777.32704594+3.06653541e-13j 16092.16740902+1.26263508e-13j 15353.55833379+6.92133161e-13j ... 13701.11233923+1.89333292e-13j 14071.06696782+1.92813488e-14j 14780.09183082-2.73536963e-14j] [17190.21265885+2.43840661e-13j 17114.17667872+7.98092853e-13j 16335.12434828-6.74765393e-16j ... 14411.51426704-1.95000916e-13j 14671.84340289-7.34878276e-15j 15852.50029872-2.27268110e-14j] [18886.52574971-3.10141272e-13j 18225.5697731 -2.06215501e-13j 17050.09305539+1.06969933e-12j ... 15648.05733367-1.49807055e-13j 15253.88541455-3.37755071e-13j 16760.70964457+3.25955088e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21346.52262434+1.08678028e-13j 19976.73587451+2.26393569e-13j 17498.55258695+4.07887308e-13j ... 16287.4443567 -6.72164392e-14j 16323.44757553-2.21621827e-13j 18461.35609574-9.37810846e-14j] [20731.58467247+2.62145911e-13j 19010.37385002+2.62539202e-13j 16446.03082882+5.17770588e-13j ... 16003.20855539+5.15940101e-15j 16791.42995123-9.13389223e-14j 18634.32105628+3.48187931e-14j] [18187.59711969+1.90834532e-13j 16770.23725279-6.22644176e-14j 15362.13610091+3.45714818e-13j ... 15387.72894082+2.09075134e-14j 16377.93850563+1.48556777e-14j 17439.53388211+1.19381736e-13j] ... [15777.32704594+3.06653541e-13j 16092.16740902+1.26263508e-13j 15353.55833379+6.92133161e-13j ... 13701.11233923+1.89333292e-13j 14071.06696782+1.92813488e-14j 14780.09183082-2.73536963e-14j] [17190.21265885+2.43840661e-13j 17114.17667872+7.98092853e-13j 16335.12434828-6.74765393e-16j ... 14411.51426704-1.95000916e-13j 14671.84340289-7.34878276e-15j 15852.50029872-2.27268110e-14j] [18886.52574971-3.10141272e-13j 18225.5697731 -2.06215501e-13j 17050.09305539+1.06969933e-12j ... 15648.05733367-1.49807055e-13j 15253.88541455-3.37755071e-13j 16760.70964457+3.25955088e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541403.814161173+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541403.814161173+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541403.897566216: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541403.897566216: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541403.814161173: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541403.814161173: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000012750328: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000012750328: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21341.8653044 +5.47296045e-14j 19968.39160084+2.61517398e-13j 17511.17355527+2.63389530e-13j ... 16277.18216951-9.35537337e-14j 16315.53418983-3.29835019e-13j 18455.63437178+6.31939366e-14j] [20729.49786844+1.13771633e-13j 18988.64306322+3.81554396e-13j 16430.0228399 +4.01603444e-13j ... 16041.91710908+1.63525639e-14j 16824.1921154 -1.71287367e-13j 18645.96929293+1.00285469e-13j] [18192.86132034+2.16822166e-13j 16776.91116336+3.28130779e-13j 15374.4050496 +5.92015546e-13j ... 15386.87955098+4.27261426e-14j 16391.63935367-1.48868666e-13j 17444.91632534+2.03082038e-13j] ... [15742.69146697+3.14013809e-13j 16078.87567782+2.47701421e-13j 15365.06619354-5.72004033e-14j ... 13679.91926209-1.25132348e-14j 14060.35212033+1.78553179e-13j 14749.51461063+2.01838089e-13j] [17178.88742229+3.01601147e-13j 17118.9865741 +8.42837451e-14j 16333.45143878+7.30982103e-14j ... 14455.26842676+3.05542839e-13j 14690.88949302-1.61039968e-13j 15842.35047565-2.68544217e-14j] [18891.81832771+6.18728889e-14j 18240.11417557-2.97617519e-13j 17060.92620261-3.71915844e-13j ... 15653.17867202-7.69061702e-14j 15247.79047248-3.15736653e-13j 16753.48118055+4.60058125e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21341.8653044 +5.47296045e-14j 19968.39160084+2.61517398e-13j 17511.17355527+2.63389530e-13j ... 16277.18216951-9.35537337e-14j 16315.53418983-3.29835019e-13j 18455.63437178+6.31939366e-14j] [20729.49786844+1.13771633e-13j 18988.64306322+3.81554396e-13j 16430.0228399 +4.01603444e-13j ... 16041.91710908+1.63525639e-14j 16824.1921154 -1.71287367e-13j 18645.96929293+1.00285469e-13j] [18192.86132034+2.16822166e-13j 16776.91116336+3.28130779e-13j 15374.4050496 +5.92015546e-13j ... 15386.87955098+4.27261426e-14j 16391.63935367-1.48868666e-13j 17444.91632534+2.03082038e-13j] ... [15742.69146697+3.14013809e-13j 16078.87567782+2.47701421e-13j 15365.06619354-5.72004033e-14j ... 13679.91926209-1.25132348e-14j 14060.35212033+1.78553179e-13j 14749.51461063+2.01838089e-13j] [17178.88742229+3.01601147e-13j 17118.9865741 +8.42837451e-14j 16333.45143878+7.30982103e-14j ... 14455.26842676+3.05542839e-13j 14690.88949302-1.61039968e-13j 15842.35047565-2.68544217e-14j] [18891.81832771+6.18728889e-14j 18240.11417557-2.97617519e-13j 17060.92620261-3.71915844e-13j ... 15653.17867202-7.69061702e-14j 15247.79047248-3.15736653e-13j 16753.48118055+4.60058125e-13j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541722.117507657+1.9387045606711586e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6541722.117507657+1.9387045606711586e-26j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541722.200916757: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6541722.200916757: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541722.117507657: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6541722.117507657: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503275: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503275: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[-0. 0. -0. ... -0. -0. -0.] [ 0. -0. 0. ... 0. -0. 0.] [-0. 0. -0. ... -0. -0. -0.] ... [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.] [-0. -0. -0. ... -0. -0. -0.]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 0.44396467+0.j -0.42310626-0.00831131j 0.36539929+0.01451863j ... -0.28396015+0.01722866j 0.36539929-0.01451863j -0.42310626+0.00831131j] [-0.42258234-0.00273598j 0.40219322+0.01041767j -0.34681976-0.01580792j ... 0.27073374-0.01479483j -0.3484027 +0.01162101j 0.40316092-0.00529236j] [ 0.36348017+0.00472624j -0.34534645-0.01103376j 0.29708638+0.01513559j ... -0.23288912+0.0111075j 0.30004222-0.00791053j -0.34713726+0.0021821j ] ... [-0.28019493+0.00550668j 0.26799259-0.00026279j -0.23179529-0.00431887j ... 0.17551797-0.01303466j -0.22784877+0.01275093j 0.26563812-0.01005449j] [ 0.36348017-0.00472624j -0.34713726-0.0021821j 0.30004222+0.00791053j ... -0.22975584+0.01614597j 0.29708638-0.01513559j -0.34534645+0.01103376j] [-0.42258234+0.00273598j 0.40316092+0.00529236j -0.3484027 -0.01162101j ... 0.26909094-0.0177205j -0.34681976+0.01580792j 0.40219322-0.01041767j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21332.45267022+3.26132869e-14j 19954.58523078+2.20521653e-13j 17524.3490528 +3.44640770e-13j ... 16273.87191769-1.60471061e-13j 16314.92895582-1.55132681e-13j 18451.39127926-4.95777106e-14j] [20724.34934425-1.30714430e-14j 18967.91059872+3.10163034e-13j 16420.08503532+4.05788647e-13j ... 16080.88792628+1.43247413e-14j 16857.93080396-7.73279678e-14j 18655.14157502+7.92089777e-14j] [18201.31839945+1.19210683e-13j 16789.89856707+5.60249898e-13j 15387.32527798+5.18251896e-13j ... 15380.1742334 +2.26441663e-13j 16399.18212969-4.85512710e-14j 17448.6288378 +6.14445918e-14j] ... [15702.64431968+2.74998645e-13j 16066.27596919-3.82668046e-14j 15374.29768226-2.55865963e-13j ... 13658.94448819-2.24493502e-13j 14050.92560357-7.93682231e-14j 14719.77505117+2.00505025e-13j] [17164.39990565+8.06346150e-14j 17123.84326261-3.06774387e-13j 16332.25809799+1.83607160e-13j ... 14500.56604177-9.40079212e-14j 14706.46891263+2.12471433e-13j 15832.15839588-1.79696911e-15j] [18901.54015157-2.10931728e-13j 18255.89876778+8.18237166e-15j 17069.17314525+6.64930200e-13j ... 15657.62301122-4.34068560e-14j 15243.10311632+1.82584513e-13j 16752.59412615-1.84494970e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[21332.45267022+3.26132869e-14j 19954.58523078+2.20521653e-13j 17524.3490528 +3.44640770e-13j ... 16273.87191769-1.60471061e-13j 16314.92895582-1.55132681e-13j 18451.39127926-4.95777106e-14j] [20724.34934425-1.30714430e-14j 18967.91059872+3.10163034e-13j 16420.08503532+4.05788647e-13j ... 16080.88792628+1.43247413e-14j 16857.93080396-7.73279678e-14j 18655.14157502+7.92089777e-14j] [18201.31839945+1.19210683e-13j 16789.89856707+5.60249898e-13j 15387.32527798+5.18251896e-13j ... 15380.1742334 +2.26441663e-13j 16399.18212969-4.85512710e-14j 17448.6288378 +6.14445918e-14j] ... [15702.64431968+2.74998645e-13j 16066.27596919-3.82668046e-14j 15374.29768226-2.55865963e-13j ... 13658.94448819-2.24493502e-13j 14050.92560357-7.93682231e-14j 14719.77505117+2.00505025e-13j] [17164.39990565+8.06346150e-14j 17123.84326261-3.06774387e-13j 16332.25809799+1.83607160e-13j ... 14500.56604177-9.40079212e-14j 14706.46891263+2.12471433e-13j 15832.15839588-1.79696911e-15j] [18901.54015157-2.10931728e-13j 18255.89876778+8.18237166e-15j 17069.17314525+6.64930200e-13j ... 15657.62301122-4.34068560e-14j 15243.10311632+1.82584513e-13j 16752.59412615-1.84494970e-14j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 35.517174: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6542375.81041977+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (6542375.81041977+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6542375.893837206: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 6542375.893837206: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6542375.81041977: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 6542375.81041977: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503277: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000127503277: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=40, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=40, peaky=40, distance to edge=39 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (-0.25010319832973016, -0.08160686691462213) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (-0.25010319832973016, -0.08160686691462213) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00107004 0.00104498 0.00101991 ... 0.00101819 0.00104179 0.00106533] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00107004 0.00104498 0.00101991 ... 0.00101819 0.00104179 0.00106533] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00106385 0.00103857 0.0010133 ... 0.00101475 0.00103859 0.00106238] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00106385 0.00103857 0.0010133 ... 0.00101475 0.00103859 0.00106238] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0010572 0.00103171 0.00100624 ... 0.00101086 0.00103494 0.00105898] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0010572 0.00103171 0.00100624 ... 0.00101086 0.00103494 0.00105898] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0009346 0.00091096 0.00088737 ... 0.00115642 0.00118127 0.001206 ] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0009346 0.00091096 0.00088737 ... 0.00115642 0.00118127 0.001206 ] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00093849 0.00091506 0.00089167 ... 0.0011614 0.00118599 0.00121046] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00093849 0.00091506 0.00089167 ... 0.0011614 0.00118599 0.00121046] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00094196 0.00091874 0.00089556 ... 0.0011659 0.00119022 0.00121442]] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00094196 0.00091874 0.00089556 ... 0.0011659 0.00119022 0.00121442]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] INFO stpipe.Ami3Pipeline.ami_analyze:step.py:546 Step ami_analyze done INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw00793025001_03102_00001_nis_c1014_ami.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:112 Calling ami_average for PSF results ... INFO stpipe.Ami3Pipeline.ami_average:step.py:430 Step ami_average running with args ([<AmiLgModel(79, 79) from jw00793025001_03102_00002_nis_c1014_ami.fits>, <AmiLgModel(79, 79) from jw00793025001_03102_00003_nis_c1014_ami.fits>, <AmiLgModel(79, 79) from jw00793025001_03102_00001_nis_c1014_ami.fits>],). INFO stpipe.Ami3Pipeline.ami_average:step.py:434 Step ami_average parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'} DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:29 create output as copy of <AmiLgModel(79, 79) from jw00793025001_03102_00002_nis_c1014_ami.fits> DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:29 create output as copy of <AmiLgModel(79, 79) from jw00793025001_03102_00002_nis_c1014_ami.fits> DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:39 minimum size of fit_image=79 DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:39 minimum size of fit_image=79 INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793025001_03102_00002_nis_c1014_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793025001_03102_00002_nis_c1014_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793025001_03102_00003_nis_c1014_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793025001_03102_00003_nis_c1014_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793025001_03102_00001_nis_c1014_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793025001_03102_00001_nis_c1014_ami.fits> DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:80 Divide accumulated results by 3 DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:80 Divide accumulated results by 3 INFO stpipe.Ami3Pipeline.ami_average:step.py:546 Step ami_average done INFO stpipe.Ami3Pipeline:calwebb_ami3.py:122 Blending metadata for averaged psf INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw00793-c1014_t005_niriss_f480m-nrm-sub80_psf-amiavg.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:129 Calling ami_average for target results ... INFO stpipe.Ami3Pipeline.ami_average:step.py:430 Step ami_average running with args ([<AmiLgModel(79, 79) from jw00793022001_03102_00002_nis_c1014_ami.fits>, <AmiLgModel(79, 79) from jw00793022001_03102_00001_nis_c1014_ami.fits>, <AmiLgModel(79, 79) from jw00793022001_03102_00003_nis_c1014_ami.fits>],). INFO stpipe.Ami3Pipeline.ami_average:step.py:434 Step ami_average parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_average', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'} DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:29 create output as copy of <AmiLgModel(79, 79) from jw00793022001_03102_00002_nis_c1014_ami.fits> DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:29 create output as copy of <AmiLgModel(79, 79) from jw00793022001_03102_00002_nis_c1014_ami.fits> DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:39 minimum size of fit_image=79 DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:39 minimum size of fit_image=79 INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793022001_03102_00002_nis_c1014_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793022001_03102_00002_nis_c1014_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793022001_03102_00001_nis_c1014_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793022001_03102_00001_nis_c1014_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793022001_03102_00003_nis_c1014_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(79, 79) from jw00793022001_03102_00003_nis_c1014_ami.fits> DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:80 Divide accumulated results by 3 DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:80 Divide accumulated results by 3 INFO stpipe.Ami3Pipeline.ami_average:step.py:546 Step ami_average done INFO stpipe.Ami3Pipeline:calwebb_ami3.py:139 Blending metadata for averaged target INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw00793-c1014_t005_niriss_f480m-nrm-sub80_amiavg.fits INFO stpipe.Ami3Pipeline.ami_normalize:step.py:430 Step ami_normalize running with args (<AmiLgModel(79, 79) from jw00793-c1014_t005_niriss_f480m-nrm-sub80_amiavg.fits>, <AmiLgModel(79, 79) from jw00793-c1014_t005_niriss_f480m-nrm-sub80_psf-amiavg.fits>). INFO stpipe.Ami3Pipeline.ami_normalize:step.py:434 Step ami_normalize parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'} INFO stpipe.Ami3Pipeline.ami_normalize:step.py:546 Step ami_normalize done INFO stpipe.Ami3Pipeline:calwebb_ami3.py:156 Blending metadata for PSF normalized target INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw00793-c1014_t005_niriss_f480m-nrm-sub80_aminorm.fits INFO stpipe.Ami3Pipeline:calwebb_ami3.py:164 ... ending calwebb_ami3 INFO stpipe.Ami3Pipeline:calwebb_ami3.py:164 ... ending calwebb_ami3 INFO stpipe.Ami3Pipeline:step.py:546 Step Ami3Pipeline done | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_niriss_ami3_exp[025-c1014_ami] | 0.17 | |
|
No log output captured. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_niriss_ami3_product[amiavg] | 0.42 | |
|
No log output captured. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_niriss_ami3_product[psf-amiavg] | 0.43 | |
|
No log output captured. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_niriss_ami3_product[aminorm] | 0.59 | |
|
No log output captured. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_ami_analyze_with_nans | 14.62 | |
|
------------------------------Captured stderr call------------------------------ 2022-12-04 03:37:49,176 - stpipe.AmiAnalyzeStep - INFO - AmiAnalyzeStep instance created. 2022-12-04 03:37:49,397 - stpipe.AmiAnalyzeStep - INFO - Step AmiAnalyzeStep running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_ami_analyze_with_nans0/jw00042004001_01101_00005_nis_withNAN_cal.fits',). 2022-12-04 03:37:49,398 - stpipe.AmiAnalyzeStep - INFO - Step AmiAnalyzeStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} 2022-12-04 03:37:49,398 - stpipe.AmiAnalyzeStep - INFO - Oversampling factor = 3 2022-12-04 03:37:49,398 - stpipe.AmiAnalyzeStep - INFO - Initial rotation guess = 0.0 deg 2022-12-04 03:37:49,398 - stpipe.AmiAnalyzeStep - INFO - Initial values to use for psf offset = [0.0, 0.0] 2022-12-04 03:37:49,493 - stpipe.AmiAnalyzeStep - INFO - Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits 2022-12-04 03:37:49,573 - stpipe.AmiAnalyzeStep - INFO - Applying median filter for 2 NaN and 0 DO_NOT_USE pixels 2022-12-04 03:37:49,574 - stpipe.AmiAnalyzeStep - INFO - Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] 2022-12-04 03:38:03,351 - stpipe.AmiAnalyzeStep - INFO - Results used CRDS context: jwst_1019.pmap 2022-12-04 03:38:03,441 - stpipe.AmiAnalyzeStep - INFO - Saved model in jw00042004001_01101_00005_nis_withNAN_amianalyzestep.fits 2022-12-04 03:38:03,441 - stpipe.AmiAnalyzeStep - INFO - Step AmiAnalyzeStep done -------------------------------Captured log call-------------------------------- INFO stpipe.AmiAnalyzeStep:step.py:366 AmiAnalyzeStep instance created. INFO stpipe.AmiAnalyzeStep:step.py:430 Step AmiAnalyzeStep running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_ami_analyze_with_nans0/jw00042004001_01101_00005_nis_withNAN_cal.fits',). INFO stpipe.AmiAnalyzeStep:step.py:434 Step AmiAnalyzeStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} INFO stpipe.AmiAnalyzeStep:ami_analyze_step.py:45 Oversampling factor = 3 INFO stpipe.AmiAnalyzeStep:ami_analyze_step.py:46 Initial rotation guess = 0.0 deg INFO stpipe.AmiAnalyzeStep:ami_analyze_step.py:47 Initial values to use for psf offset = [0.0, 0.0] INFO stpipe.AmiAnalyzeStep:ami_analyze_step.py:61 Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits INFO stpipe.AmiAnalyzeStep:utils.py:1173 Applying median filter for 2 NaN and 0 DO_NOT_USE pixels INFO stpipe.AmiAnalyzeStep:utils.py:1173 Applying median filter for 2 NaN and 0 DO_NOT_USE pixels INFO stpipe.AmiAnalyzeStep:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] INFO stpipe.AmiAnalyzeStep:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45786612e+08-4.69117081e-09j 2.72397834e+08-3.05274449e-09j 2.93552075e+08-3.80991396e-09j ... 1.96693323e+08-4.28150504e-09j 2.16358897e+08-1.07533569e-09j 2.38090736e+08-6.45027146e-09j] [2.47960969e+08-2.26070946e-09j 2.66160010e+08+1.17525020e-09j 2.85051134e+08+3.10475580e-10j ... 1.94134821e+08-4.89495890e-09j 2.12507659e+08-7.10005912e-10j 2.38953604e+08-1.22469186e-09j] [2.53916175e+08+9.84076129e-10j 2.67560381e+08-8.77917596e-11j 2.86640358e+08+5.13951390e-09j ... 1.98482312e+08-2.89907309e-09j 2.12192880e+08-1.09352559e-09j 2.40410914e+08-4.74287576e-11j] ... [2.30108239e+08-2.16313334e-09j 2.40286292e+08-5.88901557e-09j 2.38561990e+08-4.24622992e-09j ... 1.75495897e+08-7.04759628e-09j 1.91743018e+08-1.57314561e-08j 2.09569885e+08-1.09671311e-08j] [2.22836644e+08-1.25631874e-08j 2.48776520e+08-2.76632218e-09j 2.63627354e+08-8.79354479e-09j ... 1.86549862e+08-5.37031978e-10j 2.06672502e+08-8.56688715e-09j 2.14435597e+08-1.17477465e-08j] [2.34689173e+08-7.02180593e-09j 2.69381012e+08-9.55575942e-09j 2.93749023e+08-7.74729384e-09j ... 1.99308365e+08-5.00723814e-09j 2.17781318e+08-5.99430717e-09j 2.28388832e+08-2.46111662e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45786612e+08-4.69117081e-09j 2.72397834e+08-3.05274449e-09j 2.93552075e+08-3.80991396e-09j ... 1.96693323e+08-4.28150504e-09j 2.16358897e+08-1.07533569e-09j 2.38090736e+08-6.45027146e-09j] [2.47960969e+08-2.26070946e-09j 2.66160010e+08+1.17525020e-09j 2.85051134e+08+3.10475580e-10j ... 1.94134821e+08-4.89495890e-09j 2.12507659e+08-7.10005912e-10j 2.38953604e+08-1.22469186e-09j] [2.53916175e+08+9.84076129e-10j 2.67560381e+08-8.77917596e-11j 2.86640358e+08+5.13951390e-09j ... 1.98482312e+08-2.89907309e-09j 2.12192880e+08-1.09352559e-09j 2.40410914e+08-4.74287576e-11j] ... [2.30108239e+08-2.16313334e-09j 2.40286292e+08-5.88901557e-09j 2.38561990e+08-4.24622992e-09j ... 1.75495897e+08-7.04759628e-09j 1.91743018e+08-1.57314561e-08j 2.09569885e+08-1.09671311e-08j] [2.22836644e+08-1.25631874e-08j 2.48776520e+08-2.76632218e-09j 2.63627354e+08-8.79354479e-09j ... 1.86549862e+08-5.37031978e-10j 2.06672502e+08-8.56688715e-09j 2.14435597e+08-1.17477465e-08j] [2.34689173e+08-7.02180593e-09j 2.69381012e+08-9.55575942e-09j 2.93749023e+08-7.74729384e-09j ... 1.99308365e+08-5.00723814e-09j 2.17781318e+08-5.99430717e-09j 2.28388832e+08-2.46111662e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192653794365.65924-4.235164736271502e-22j): DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192653794365.65924-4.235164736271502e-22j): DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192653801525.73: DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192653801525.73: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192653794365.65924: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192653794365.65924: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654802: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654802: DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45881128e+08-2.85942169e-09j 2.72312922e+08+1.31263055e-09j 2.93446980e+08-1.40066280e-09j ... 1.96575296e+08-8.69051640e-09j 2.15303158e+08+7.97343529e-10j 2.37515502e+08-2.70406802e-09j] [2.48760761e+08-8.11069056e-10j 2.66532653e+08-5.34332956e-10j 2.84848152e+08+8.29729997e-10j ... 1.94608892e+08-7.25261139e-09j 2.11914798e+08+5.82993348e-11j 2.38719052e+08-3.18610436e-09j] [2.54676292e+08-1.84078762e-09j 2.68160937e+08+2.40857166e-09j 2.86792207e+08+3.52879849e-09j ... 1.99015328e+08-6.54410891e-09j 2.11976690e+08-1.61054369e-09j 2.40232079e+08-1.17611692e-09j] ... [2.28513332e+08-2.42334297e-09j 2.39229608e+08+2.45306530e-09j 2.38602646e+08-5.92727846e-09j ... 1.75289789e+08-1.40092628e-08j 1.91666751e+08+3.97535307e-09j 2.08957095e+08-6.80634153e-09j] [2.22350267e+08-5.83759468e-09j 2.48217779e+08-2.37783203e-09j 2.64446114e+08-1.20752121e-09j ... 1.87332411e+08-1.78106885e-08j 2.07194082e+08+1.72676468e-09j 2.14968302e+08-3.24744032e-09j] [2.35231002e+08-4.39214693e-09j 2.69799513e+08+2.43917754e-09j 2.94792954e+08-1.37788056e-09j ... 2.00050190e+08-1.50937126e-08j 2.18015646e+08+4.19363180e-09j 2.29039036e+08+6.67675998e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45881128e+08-2.85942169e-09j 2.72312922e+08+1.31263055e-09j 2.93446980e+08-1.40066280e-09j ... 1.96575296e+08-8.69051640e-09j 2.15303158e+08+7.97343529e-10j 2.37515502e+08-2.70406802e-09j] [2.48760761e+08-8.11069056e-10j 2.66532653e+08-5.34332956e-10j 2.84848152e+08+8.29729997e-10j ... 1.94608892e+08-7.25261139e-09j 2.11914798e+08+5.82993348e-11j 2.38719052e+08-3.18610436e-09j] [2.54676292e+08-1.84078762e-09j 2.68160937e+08+2.40857166e-09j 2.86792207e+08+3.52879849e-09j ... 1.99015328e+08-6.54410891e-09j 2.11976690e+08-1.61054369e-09j 2.40232079e+08-1.17611692e-09j] ... [2.28513332e+08-2.42334297e-09j 2.39229608e+08+2.45306530e-09j 2.38602646e+08-5.92727846e-09j ... 1.75289789e+08-1.40092628e-08j 1.91666751e+08+3.97535307e-09j 2.08957095e+08-6.80634153e-09j] [2.22350267e+08-5.83759468e-09j 2.48217779e+08-2.37783203e-09j 2.64446114e+08-1.20752121e-09j ... 1.87332411e+08-1.78106885e-08j 2.07194082e+08+1.72676468e-09j 2.14968302e+08-3.24744032e-09j] [2.35231002e+08-4.39214693e-09j 2.69799513e+08+2.43917754e-09j 2.94792954e+08-1.37788056e-09j ... 2.00050190e+08-1.50937126e-08j 2.18015646e+08+4.19363180e-09j 2.29039036e+08+6.67675998e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192633617473.83063+0j): DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192633617473.83063+0j): DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192633624633.15146: DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192633624633.15146: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192633617473.83063: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192633617473.83063: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654798: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654798: DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45861150e+08-1.81191592e-09j 2.72132847e+08+1.12051076e-09j 2.93295079e+08+1.48591898e-09j ... 1.96360415e+08-3.16158140e-09j 2.14253202e+08+1.85617179e-09j 2.36872332e+08-1.74895588e-09j] [2.49560039e+08-2.50799931e-10j 2.66930366e+08+7.13012422e-10j 2.84691112e+08+6.95067453e-10j ... 1.95280879e+08-3.07859222e-09j 2.11621358e+08-4.07040933e-11j 2.38595116e+08-8.77827103e-10j] [2.55411993e+08+3.70871366e-10j 2.68699232e+08+9.38611822e-10j 2.86775114e+08+3.63232647e-09j ... 1.99387104e+08-3.99831652e-09j 2.11672522e+08-1.30886977e-09j 2.39933462e+08-2.87672931e-09j] ... [2.26871619e+08+1.18620170e-09j 2.38166469e+08+5.33521639e-09j 2.38913793e+08+2.12512184e-09j ... 1.74969173e+08-1.07850599e-08j 1.91701845e+08+5.41372516e-10j 2.08540554e+08+1.47991524e-09j] [2.22191563e+08-1.61251556e-10j 2.47756724e+08+4.99065606e-09j 2.65258230e+08+7.94924401e-09j ... 1.88085379e+08-8.55766987e-10j 2.07671050e+08+3.90863107e-09j 2.15812656e+08+3.36537400e-11j] [2.35826106e+08-2.19725564e-09j 2.70074039e+08-1.82280657e-10j 2.95573639e+08+8.62980302e-09j ... 2.00560687e+08-4.64919613e-09j 2.17992050e+08+4.60627665e-09j 2.29663334e+08-4.14237590e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45861150e+08-1.81191592e-09j 2.72132847e+08+1.12051076e-09j 2.93295079e+08+1.48591898e-09j ... 1.96360415e+08-3.16158140e-09j 2.14253202e+08+1.85617179e-09j 2.36872332e+08-1.74895588e-09j] [2.49560039e+08-2.50799931e-10j 2.66930366e+08+7.13012422e-10j 2.84691112e+08+6.95067453e-10j ... 1.95280879e+08-3.07859222e-09j 2.11621358e+08-4.07040933e-11j 2.38595116e+08-8.77827103e-10j] [2.55411993e+08+3.70871366e-10j 2.68699232e+08+9.38611822e-10j 2.86775114e+08+3.63232647e-09j ... 1.99387104e+08-3.99831652e-09j 2.11672522e+08-1.30886977e-09j 2.39933462e+08-2.87672931e-09j] ... [2.26871619e+08+1.18620170e-09j 2.38166469e+08+5.33521639e-09j 2.38913793e+08+2.12512184e-09j ... 1.74969173e+08-1.07850599e-08j 1.91701845e+08+5.41372516e-10j 2.08540554e+08+1.47991524e-09j] [2.22191563e+08-1.61251556e-10j 2.47756724e+08+4.99065606e-09j 2.65258230e+08+7.94924401e-09j ... 1.88085379e+08-8.55766987e-10j 2.07671050e+08+3.90863107e-09j 2.15812656e+08+3.36537400e-11j] [2.35826106e+08-2.19725564e-09j 2.70074039e+08-1.82280657e-10j 2.95573639e+08+8.62980302e-09j ... 2.00560687e+08-4.64919613e-09j 2.17992050e+08+4.60627665e-09j 2.29663334e+08-4.14237590e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192620845409.20758+0j): DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192620845409.20758+0j): DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192620852568.0538: DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192620852568.0538: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192620845409.20758: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192620845409.20758: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654802: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654802: DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45782471e+08+2.70858369e-09j 2.71964458e+08+8.54727694e-10j 2.93025658e+08-2.46370729e-11j ... 1.96158615e+08-8.61751377e-10j 2.13356386e+08-5.91949753e-10j 2.36165815e+08+4.47164207e-09j] [2.50271371e+08+3.79272813e-09j 2.67412090e+08+4.66384246e-09j 2.84590637e+08+4.15762469e-09j ... 1.96091758e+08+1.88377973e-09j 2.11628136e+08-1.92164991e-09j 2.38505970e+08+7.01043578e-09j] [2.56033600e+08+5.32792843e-09j 2.69127462e+08+7.36670976e-09j 2.86608331e+08+9.28858867e-09j ... 1.99479198e+08+5.10453387e-09j 2.11260136e+08-2.19266043e-09j 2.39549253e+08+8.50979854e-09j] ... [2.25301360e+08+5.01969494e-09j 2.37148938e+08+5.52732525e-09j 2.39513201e+08-4.32079704e-09j ... 1.74615010e+08+2.93346022e-09j 1.91875672e+08+4.06656527e-10j 2.08402541e+08+7.22037904e-09j] [2.22352269e+08-4.92837662e-10j 2.47387368e+08+5.51326495e-09j 2.66042155e+08-6.07891954e-09j ... 1.88752652e+08-8.57245525e-11j 2.08059215e+08-1.52160523e-09j 2.16874855e+08-9.23321184e-10j] [2.36471679e+08-5.91036329e-10j 2.70195297e+08+6.98645854e-09j 2.95978601e+08-1.19661513e-08j ... 2.00797894e+08-4.61841664e-09j 2.17735141e+08+1.96865617e-09j 2.30182205e+08+4.32621501e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45782471e+08+2.70858369e-09j 2.71964458e+08+8.54727694e-10j 2.93025658e+08-2.46370729e-11j ... 1.96158615e+08-8.61751377e-10j 2.13356386e+08-5.91949753e-10j 2.36165815e+08+4.47164207e-09j] [2.50271371e+08+3.79272813e-09j 2.67412090e+08+4.66384246e-09j 2.84590637e+08+4.15762469e-09j ... 1.96091758e+08+1.88377973e-09j 2.11628136e+08-1.92164991e-09j 2.38505970e+08+7.01043578e-09j] [2.56033600e+08+5.32792843e-09j 2.69127462e+08+7.36670976e-09j 2.86608331e+08+9.28858867e-09j ... 1.99479198e+08+5.10453387e-09j 2.11260136e+08-2.19266043e-09j 2.39549253e+08+8.50979854e-09j] ... [2.25301360e+08+5.01969494e-09j 2.37148938e+08+5.52732525e-09j 2.39513201e+08-4.32079704e-09j ... 1.74615010e+08+2.93346022e-09j 1.91875672e+08+4.06656527e-10j 2.08402541e+08+7.22037904e-09j] [2.22352269e+08-4.92837662e-10j 2.47387368e+08+5.51326495e-09j 2.66042155e+08-6.07891954e-09j ... 1.88752652e+08-8.57245525e-11j 2.08059215e+08-1.52160523e-09j 2.16874855e+08-9.23321184e-10j] [2.36471679e+08-5.91036329e-10j 2.70195297e+08+6.98645854e-09j 2.95978601e+08-1.19661513e-08j ... 2.00797894e+08-4.61841664e-09j 2.17735141e+08+1.96865617e-09j 2.30182205e+08+4.32621501e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192616934434.226-1.3234889800848443e-22j): DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192616934434.226-1.3234889800848443e-22j): DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192616941592.92688: DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192616941592.92688: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192616934434.226: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192616934434.226: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654802: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654802: DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45665070e+08-5.21358970e-09j 2.71881947e+08-1.88296919e-09j 2.92610738e+08+5.48715180e-11j ... 1.96041835e+08-7.03153191e-09j 2.12727646e+08-2.69668281e-09j 2.35407097e+08-5.42751286e-09j] [2.50818475e+08-1.49330934e-09j 2.68014014e+08-1.69515260e-09j 2.84583952e+08+4.95997162e-10j ... 1.96932214e+08-5.88664572e-09j 2.11895820e+08-3.02882238e-09j 2.38403117e+08-4.60845306e-09j] [2.56467005e+08-1.72113005e-09j 2.69399238e+08-1.36739364e-10j 2.86317343e+08+1.71924682e-09j ... 1.99247646e+08-6.96786728e-09j 2.10733767e+08-2.40564451e-09j 2.39128143e+08-1.27034705e-08j] ... [2.23904830e+08+9.60355474e-10j 2.36202862e+08+4.51866710e-09j 2.40384824e+08+1.62408445e-09j ... 1.74360965e+08-5.18315251e-09j 1.92178807e+08+2.74051054e-09j 2.08570031e+08+4.96824389e-11j] [2.22822942e+08+2.42383454e-09j 2.47125729e+08+6.46583181e-09j 2.66776538e+08+2.30593943e-09j ... 1.89308656e+08-1.16923286e-09j 2.08330681e+08+4.79522228e-09j 2.18035574e+08-1.14128475e-09j] [2.37158582e+08-6.17519375e-09j 2.70178011e+08-4.16775366e-10j 2.95934244e+08+4.63366087e-09j ... 2.00757152e+08-5.86079459e-09j 2.17311701e+08-4.03204606e-09j 2.30533590e+08-1.04919298e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45665070e+08-5.21358970e-09j 2.71881947e+08-1.88296919e-09j 2.92610738e+08+5.48715180e-11j ... 1.96041835e+08-7.03153191e-09j 2.12727646e+08-2.69668281e-09j 2.35407097e+08-5.42751286e-09j] [2.50818475e+08-1.49330934e-09j 2.68014014e+08-1.69515260e-09j 2.84583952e+08+4.95997162e-10j ... 1.96932214e+08-5.88664572e-09j 2.11895820e+08-3.02882238e-09j 2.38403117e+08-4.60845306e-09j] [2.56467005e+08-1.72113005e-09j 2.69399238e+08-1.36739364e-10j 2.86317343e+08+1.71924682e-09j ... 1.99247646e+08-6.96786728e-09j 2.10733767e+08-2.40564451e-09j 2.39128143e+08-1.27034705e-08j] ... [2.23904830e+08+9.60355474e-10j 2.36202862e+08+4.51866710e-09j 2.40384824e+08+1.62408445e-09j ... 1.74360965e+08-5.18315251e-09j 1.92178807e+08+2.74051054e-09j 2.08570031e+08+4.96824389e-11j] [2.22822942e+08+2.42383454e-09j 2.47125729e+08+6.46583181e-09j 2.66776538e+08+2.30593943e-09j ... 1.89308656e+08-1.16923286e-09j 2.08330681e+08+4.79522228e-09j 2.18035574e+08-1.14128475e-09j] [2.37158582e+08-6.17519375e-09j 2.70178011e+08-4.16775366e-10j 2.95934244e+08+4.63366087e-09j ... 2.00757152e+08-5.86079459e-09j 2.17311701e+08-4.03204606e-09j 2.30533590e+08-1.04919298e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192620483646.20053-1.852884572118782e-22j): DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192620483646.20053-1.852884572118782e-22j): DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192620490805.0333: DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192620490805.0333: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192620483646.20053: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192620483646.20053: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654802: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654802: DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45500233e+08-6.17141174e-09j 2.71927941e+08-1.85851466e-09j 2.92086880e+08-5.55858284e-09j ... 1.96021222e+08-2.65059779e-09j 2.12448432e+08-2.62812322e-09j 2.34629238e+08-1.93501365e-10j] [2.51149237e+08-1.94581411e-09j 2.68735906e+08+1.80665910e-09j 2.84706509e+08-1.04160585e-09j ... 1.97692322e+08-2.93005306e-09j 2.12361878e+08-1.92196628e-09j 2.38268570e+08+1.71315451e-09j] [2.56665122e+08-3.47930742e-09j 2.69474643e+08+9.97298700e-10j 2.85922125e+08+1.39450416e-09j ... 1.98672088e+08-1.01578106e-09j 2.10078740e+08-4.81091050e-09j 2.38710803e+08-2.88560568e-09j] ... [2.22776191e+08+6.41454340e-09j 2.35335623e+08+7.26508112e-10j 2.41476484e+08-3.41682073e-09j ... 1.74355204e+08-7.63008422e-09j 1.92579785e+08+4.03387821e-09j 2.09021790e+08+2.65669776e-09j] [2.23602859e+08+3.37509626e-09j 2.46997863e+08+2.23815327e-09j 2.67427152e+08-4.28020560e-09j ... 1.89756528e+08-3.89464974e-09j 2.08482909e+08-1.10675900e-09j 2.19184602e+08+5.11328520e-09j] [2.37846064e+08-8.02021086e-09j 2.70048801e+08+4.53706759e-09j 2.95440326e+08-2.41250513e-10j ... 2.00452074e+08-4.22978616e-09j 2.16799557e+08-3.02855107e-09j 2.30665548e+08+6.08643172e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45500233e+08-6.17141174e-09j 2.71927941e+08-1.85851466e-09j 2.92086880e+08-5.55858284e-09j ... 1.96021222e+08-2.65059779e-09j 2.12448432e+08-2.62812322e-09j 2.34629238e+08-1.93501365e-10j] [2.51149237e+08-1.94581411e-09j 2.68735906e+08+1.80665910e-09j 2.84706509e+08-1.04160585e-09j ... 1.97692322e+08-2.93005306e-09j 2.12361878e+08-1.92196628e-09j 2.38268570e+08+1.71315451e-09j] [2.56665122e+08-3.47930742e-09j 2.69474643e+08+9.97298700e-10j 2.85922125e+08+1.39450416e-09j ... 1.98672088e+08-1.01578106e-09j 2.10078740e+08-4.81091050e-09j 2.38710803e+08-2.88560568e-09j] ... [2.22776191e+08+6.41454340e-09j 2.35335623e+08+7.26508112e-10j 2.41476484e+08-3.41682073e-09j ... 1.74355204e+08-7.63008422e-09j 1.92579785e+08+4.03387821e-09j 2.09021790e+08+2.65669776e-09j] [2.23602859e+08+3.37509626e-09j 2.46997863e+08+2.23815327e-09j 2.67427152e+08-4.28020560e-09j ... 1.89756528e+08-3.89464974e-09j 2.08482909e+08-1.10675900e-09j 2.19184602e+08+5.11328520e-09j] [2.37846064e+08-8.02021086e-09j 2.70048801e+08+4.53706759e-09j 2.95440326e+08-2.41250513e-10j ... 2.00452074e+08-4.22978616e-09j 2.16799557e+08-3.02855107e-09j 2.30665548e+08+6.08643172e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192629856518.79602-5.293955920339377e-23j): DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192629856518.79602-5.293955920339377e-23j): DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192629863677.9771: DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192629863677.9771: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192629856518.79602: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192629856518.79602: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.00000003716548: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.00000003716548: DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:989 ---------------- DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:990 crosscorrelate: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:991 a: [[ -0.86962444 2.009578 -6.3466034 ... -6.179627 -4.6225896 -0.2973834 ] [ -2.8812823 5.2045126 2.4127562 ... -7.6686335 -5.3177547 0.70028055] [ -4.4811454 -1.5495273 -7.649156 ... -2.2387311 -2.672726 0.42969546] ... [ 2.5508382 -56.666134 -8.625097 ... 0.500281 2.2184563 9.321041 ] [-26.21318 0.60888135 -4.753658 ... 5.3299727 8.766733 2.3149076 ] [ -0.61852646 1.8768994 -6.481641 ... -0.77485275 5.759552 -1.476245 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:992 A: [[ 13073.14013913 +0.j -9748.2853904 +3911.72407943j 4699.56062669-4337.34721372j ... -1144.40451752-2788.21467759j 4699.56062669+4337.34721372j -9748.2853904 -3911.72407943j] [-10515.98603085 +275.13655153j 8114.70017047-3396.07472142j -3969.70821047+4072.10796725j ... 1089.15954875+2301.52835324j -4338.49969077-3885.75207359j 8504.67464229+3033.3085961j ] [ 6374.04243325 -379.95754423j -5093.58375943+2115.19661802j 2666.01541453-2910.81906777j ... -851.6425927 -1330.83964041j 2821.87513702+2671.70030348j -5653.34529095-1834.43807483j] ... [ -3381.09101001 -249.71232602j 2535.16851503 -994.00652669j -1031.3868488 +947.59254824j ... 378.34479459 +714.796729j -1220.56090597-1154.10967087j 2232.21978641+1116.83615399j] [ 6374.04243325 +379.95754423j -5653.34529095+1834.43807483j 2821.87513702-2671.70030348j ... -707.05315588-1826.14565148j 2666.01541453+2910.81906777j -5093.58375943-2115.19661802j] [-10515.98603085 -275.13655153j 8504.67464229-3033.3085961j -4338.49969077+3885.75207359j ... 1119.2550109 +2827.61309983j -3969.70821047-4072.10796725j 8114.70017047+3396.07472142j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45271461e+08+1.60163330e-09j 2.72112378e+08+3.15978024e-09j 2.91527847e+08+4.58012720e-09j ... 1.96089159e+08+3.53128219e-09j 2.12570309e+08+7.29472688e-09j 2.33886958e+08+1.46703801e-09j] [2.51231995e+08+3.98624425e-09j 2.69529017e+08+5.79698148e-09j 2.84975917e+08+5.80988238e-09j ... 1.98267099e+08+2.71350296e-09j 2.12928487e+08+5.54839287e-09j 2.38089943e+08+1.19077118e-09j] [2.56627590e+08+6.84032279e-09j 2.69332112e+08+5.41532710e-09j 2.85453799e+08+7.81338086e-09j ... 1.97727270e+08+5.87777852e-09j 2.09295026e+08+6.27609281e-09j 2.38342248e+08-1.16140168e-09j] ... [2.21999826e+08+9.85391878e-09j 2.34535971e+08+3.77126986e-09j 2.42694467e+08+7.71449126e-09j ... 1.74719898e+08+6.68978551e-09j 1.93054163e+08+1.09442958e-08j 2.09719446e+08-2.16508746e-09j] [2.24673209e+08+1.74715246e-09j 2.47018197e+08+9.25303438e-09j 2.67958333e+08+4.99345661e-09j ... 1.90106947e+08+7.80751781e-09j 2.08522271e+08+9.24960330e-09j 2.20227874e+08+1.90605703e-09j] [2.38475696e+08+4.07916460e-09j 2.69852830e+08+1.51477907e-08j 2.94584452e+08+1.05610329e-08j ... 1.99898947e+08-1.78699644e-09j 2.16270279e+08+8.69698110e-09j 2.30548377e+08+4.16428167e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:995 c: [[2.45271461e+08+1.60163330e-09j 2.72112378e+08+3.15978024e-09j 2.91527847e+08+4.58012720e-09j ... 1.96089159e+08+3.53128219e-09j 2.12570309e+08+7.29472688e-09j 2.33886958e+08+1.46703801e-09j] [2.51231995e+08+3.98624425e-09j 2.69529017e+08+5.79698148e-09j 2.84975917e+08+5.80988238e-09j ... 1.98267099e+08+2.71350296e-09j 2.12928487e+08+5.54839287e-09j 2.38089943e+08+1.19077118e-09j] [2.56627590e+08+6.84032279e-09j 2.69332112e+08+5.41532710e-09j 2.85453799e+08+7.81338086e-09j ... 1.97727270e+08+5.87777852e-09j 2.09295026e+08+6.27609281e-09j 2.38342248e+08-1.16140168e-09j] ... [2.21999826e+08+9.85391878e-09j 2.34535971e+08+3.77126986e-09j 2.42694467e+08+7.71449126e-09j ... 1.74719898e+08+6.68978551e-09j 1.93054163e+08+1.09442958e-08j 2.09719446e+08-2.16508746e-09j] [2.24673209e+08+1.74715246e-09j 2.47018197e+08+9.25303438e-09j 2.67958333e+08+4.99345661e-09j ... 1.90106947e+08+7.80751781e-09j 2.08522271e+08+9.24960330e-09j 2.20227874e+08+1.90605703e-09j] [2.38475696e+08+4.07916460e-09j 2.69852830e+08+1.51477907e-08j 2.94584452e+08+1.05610329e-08j ... 1.99898947e+08-1.78699644e-09j 2.16270279e+08+8.69698110e-09j 2.30548377e+08+4.16428167e-09j]]: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:996 a.sum: 1045851.25: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.AmiAnalyzeStep:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192649105390.82172+1.6940658945086007e-21j): DEBUG stpipe.AmiAnalyzeStep:utils.py:998 c.sum: (192649105390.82172+1.6940658945086007e-21j): DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192649112550.71823: DEBUG stpipe.AmiAnalyzeStep:utils.py:999 a.sum*b.sum: 192649112550.71823: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192649105390.82172: DEBUG stpipe.AmiAnalyzeStep:utils.py:1000 c.sum.real: 192649105390.82172: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654802: DEBUG stpipe.AmiAnalyzeStep:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000371654802: DEBUG stpipe.AmiAnalyzeStep:utils.py:432 peakx=40, peaky=45, distance to edge=34 DEBUG stpipe.AmiAnalyzeStep:utils.py:432 peakx=40, peaky=45, distance to edge=34 DEBUG stpipe.AmiAnalyzeStep:lg_model.py:321 Passed to model_array: psf_offset: (-0.20422059019504382, 0.30486704481927557) DEBUG stpipe.AmiAnalyzeStep:lg_model.py:321 Passed to model_array: psf_offset: (-0.20422059019504382, 0.30486704481927557) DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 Primary beam in the model created: [[0.00020202 0.00021647 0.00023125 ... 0.00017051 0.0001566 0.00014317] DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 Primary beam in the model created: [[0.00020202 0.00021647 0.00023125 ... 0.00017051 0.0001566 0.00014317] DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 [0.00021722 0.00023218 0.00024745 ... 0.00018579 0.00017126 0.0001572 ] DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 [0.00021722 0.00023218 0.00024745 ... 0.00018579 0.00017126 0.0001572 ] DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 [0.0002331 0.00024856 0.00026432 ... 0.00020183 0.00018669 0.000172 ] DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 [0.0002331 0.00024856 0.00026432 ... 0.00020183 0.00018669 0.000172 ] DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 ... DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 ... DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 [0.00037972 0.00040019 0.00042093 ... 0.00031196 0.00029412 0.0002766 ] DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 [0.00037972 0.00040019 0.00042093 ... 0.00031196 0.00029412 0.0002766 ] DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 [0.00035677 0.00037665 0.00039683 ... 0.00029262 0.00027531 0.00025835] DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 [0.00035677 0.00037665 0.00039683 ... 0.00029262 0.00027531 0.00025835] DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 [0.00033464 0.00035395 0.00037357 ... 0.00027401 0.00025725 0.00024084]] DEBUG stpipe.AmiAnalyzeStep:lg_model.py:323 [0.00033464 0.00035395 0.00037357 ... 0.00027401 0.00025725 0.00024084]] DEBUG stpipe.AmiAnalyzeStep:utils.py:769 ------- DEBUG stpipe.AmiAnalyzeStep:utils.py:769 ------- DEBUG stpipe.AmiAnalyzeStep:utils.py:770 makeA: DEBUG stpipe.AmiAnalyzeStep:utils.py:770 makeA: DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.AmiAnalyzeStep:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.AmiAnalyzeStep:utils.py:788 matrixA: DEBUG stpipe.AmiAnalyzeStep:utils.py:788 matrixA: DEBUG stpipe.AmiAnalyzeStep:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] DEBUG stpipe.AmiAnalyzeStep:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] INFO stpipe.AmiAnalyzeStep:core.py:90 Results used CRDS context: jwst_1019.pmap INFO stpipe.AmiAnalyzeStep:core.py:90 Results used CRDS context: jwst_1019.pmap INFO stpipe.AmiAnalyzeStep:step.py:1016 Saved model in jw00042004001_01101_00005_nis_withNAN_amianalyzestep.fits INFO stpipe.AmiAnalyzeStep:step.py:546 Step AmiAnalyzeStep done | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_ami3.py::test_ami_average_with_sizes | 58.67 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-12-04 03:38:04,204 - stpipe.Ami3Pipeline - INFO - Ami3Pipeline instance created. 2022-12-04 03:38:04,205 - stpipe.Ami3Pipeline.ami_analyze - INFO - AmiAnalyzeStep instance created. 2022-12-04 03:38:04,206 - stpipe.Ami3Pipeline.ami_average - INFO - AmiAverageStep instance created. 2022-12-04 03:38:04,207 - stpipe.Ami3Pipeline.ami_normalize - INFO - AmiNormalizeStep instance created. 2022-12-04 03:38:04,421 - stpipe.Ami3Pipeline - INFO - Step Ami3Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093_c1000_short_ami3_asn.json',). 2022-12-04 03:38:04,424 - stpipe.Ami3Pipeline - INFO - Step Ami3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'save_averages': True, 'steps': {'ami_analyze': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'}, 'ami_average': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'}, 'ami_normalize': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'}}} 2022-12-04 03:38:04,543 - stpipe.Ami3Pipeline - INFO - Prefetching reference files for dataset: 'jw01093007001_03102_00001_nis_cal.fits' reftypes = ['throughput'] 2022-12-04 03:38:04,545 - stpipe.Ami3Pipeline - INFO - Prefetch for THROUGHPUT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits'. 2022-12-04 03:38:04,548 - stpipe.Ami3Pipeline - INFO - Starting calwebb_ami3 2022-12-04 03:38:04,557 - stpipe.Ami3Pipeline - INFO - No PSF reference members found in association table 2022-12-04 03:38:04,557 - stpipe.Ami3Pipeline - INFO - ami_normalize step will be skipped 2022-12-04 03:38:04,697 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00001_nis_cal.fits',). 2022-12-04 03:38:04,698 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} 2022-12-04 03:38:04,698 - stpipe.Ami3Pipeline.ami_analyze - INFO - Oversampling factor = 3 2022-12-04 03:38:04,698 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial rotation guess = 0.0 deg 2022-12-04 03:38:04,698 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for psf offset = [0.0, 0.0] 2022-12-04 03:38:04,811 - stpipe.Ami3Pipeline.ami_analyze - INFO - Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits 2022-12-04 03:38:04,907 - stpipe.Ami3Pipeline.ami_analyze - INFO - Applying median filter for 0 NaN and 12 DO_NOT_USE pixels 2022-12-04 03:38:04,909 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] 2022-12-04 03:38:18,604 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze done 2022-12-04 03:38:18,682 - stpipe.Ami3Pipeline - INFO - Saved model in jw01093007001_03102_00001_nis_a3001_ami.fits 2022-12-04 03:38:18,844 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00012_nis_cal.fits',). 2022-12-04 03:38:18,845 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} 2022-12-04 03:38:18,845 - stpipe.Ami3Pipeline.ami_analyze - INFO - Oversampling factor = 3 2022-12-04 03:38:18,845 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial rotation guess = 0.0 deg 2022-12-04 03:38:18,845 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for psf offset = [0.0, 0.0] 2022-12-04 03:38:18,959 - stpipe.Ami3Pipeline.ami_analyze - INFO - Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits 2022-12-04 03:38:19,048 - stpipe.Ami3Pipeline.ami_analyze - INFO - Applying median filter for 0 NaN and 13 DO_NOT_USE pixels 2022-12-04 03:38:19,050 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] 2022-12-04 03:38:32,527 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze done 2022-12-04 03:38:32,607 - stpipe.Ami3Pipeline - INFO - Saved model in jw01093007001_03102_00012_nis_a3001_ami.fits 2022-12-04 03:38:32,743 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00013_nis_cal.fits',). 2022-12-04 03:38:32,744 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} 2022-12-04 03:38:32,744 - stpipe.Ami3Pipeline.ami_analyze - INFO - Oversampling factor = 3 2022-12-04 03:38:32,744 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial rotation guess = 0.0 deg 2022-12-04 03:38:32,744 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for psf offset = [0.0, 0.0] 2022-12-04 03:38:32,852 - stpipe.Ami3Pipeline.ami_analyze - INFO - Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits 2022-12-04 03:38:32,937 - stpipe.Ami3Pipeline.ami_analyze - INFO - Applying median filter for 0 NaN and 12 DO_NOT_USE pixels 2022-12-04 03:38:32,939 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] 2022-12-04 03:38:46,500 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze done 2022-12-04 03:38:46,578 - stpipe.Ami3Pipeline - INFO - Saved model in jw01093007001_03102_00013_nis_a3001_ami.fits 2022-12-04 03:38:46,733 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00014_nis_cal.fits',). 2022-12-04 03:38:46,734 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} 2022-12-04 03:38:46,734 - stpipe.Ami3Pipeline.ami_analyze - INFO - Oversampling factor = 3 2022-12-04 03:38:46,734 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial rotation guess = 0.0 deg 2022-12-04 03:38:46,734 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for psf offset = [0.0, 0.0] 2022-12-04 03:38:46,845 - stpipe.Ami3Pipeline.ami_analyze - INFO - Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits 2022-12-04 03:38:46,930 - stpipe.Ami3Pipeline.ami_analyze - INFO - Applying median filter for 0 NaN and 12 DO_NOT_USE pixels 2022-12-04 03:38:46,933 - stpipe.Ami3Pipeline.ami_analyze - INFO - Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] 2022-12-04 03:39:00,562 - stpipe.Ami3Pipeline.ami_analyze - INFO - Step ami_analyze done 2022-12-04 03:39:00,642 - stpipe.Ami3Pipeline - INFO - Saved model in jw01093007001_03102_00014_nis_a3001_ami.fits 2022-12-04 03:39:00,788 - stpipe.Ami3Pipeline.ami_average - INFO - Step ami_average running with args ([<AmiLgModel(67, 67) from jw01093007001_03102_00001_nis_a3001_ami.fits>, <AmiLgModel(67, 67) from jw01093007001_03102_00012_nis_a3001_ami.fits>, <AmiLgModel(69, 69) from jw01093007001_03102_00013_nis_a3001_ami.fits>, <AmiLgModel(69, 69) from jw01093007001_03102_00014_nis_a3001_ami.fits>],). 2022-12-04 03:39:00,789 - stpipe.Ami3Pipeline.ami_average - INFO - Step ami_average parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'} 2022-12-04 03:39:00,837 - stpipe.Ami3Pipeline.ami_average - INFO - Accumulate data from <AmiLgModel(67, 67) from jw01093007001_03102_00001_nis_a3001_ami.fits> 2022-12-04 03:39:00,843 - stpipe.Ami3Pipeline.ami_average - INFO - Accumulate data from <AmiLgModel(67, 67) from jw01093007001_03102_00012_nis_a3001_ami.fits> 2022-12-04 03:39:00,852 - stpipe.Ami3Pipeline.ami_average - INFO - Accumulate data from <AmiLgModel(69, 69) from jw01093007001_03102_00013_nis_a3001_ami.fits> 2022-12-04 03:39:00,860 - stpipe.Ami3Pipeline.ami_average - INFO - Accumulate data from <AmiLgModel(69, 69) from jw01093007001_03102_00014_nis_a3001_ami.fits> 2022-12-04 03:39:00,872 - stpipe.Ami3Pipeline.ami_average - INFO - Step ami_average done 2022-12-04 03:39:00,873 - stpipe.Ami3Pipeline - INFO - Blending metadata for averaged target 2022-12-04 03:39:01,825 - stpipe.Ami3Pipeline - INFO - Saved model in jw01093-o007_result_short_amiavg.fits 2022-12-04 03:39:01,826 - stpipe.Ami3Pipeline - INFO - ... ending calwebb_ami3 2022-12-04 03:39:01,826 - stpipe.Ami3Pipeline - INFO - Step Ami3Pipeline done -------------------------------Captured log setup------------------------------- INFO stpipe.Ami3Pipeline:step.py:366 Ami3Pipeline instance created. INFO stpipe.Ami3Pipeline.ami_analyze:step.py:366 AmiAnalyzeStep instance created. INFO stpipe.Ami3Pipeline.ami_average:step.py:366 AmiAverageStep instance created. INFO stpipe.Ami3Pipeline.ami_normalize:step.py:366 AmiNormalizeStep instance created. INFO stpipe.Ami3Pipeline:step.py:430 Step Ami3Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093_c1000_short_ami3_asn.json',). INFO stpipe.Ami3Pipeline:step.py:434 Step Ami3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'save_averages': True, 'steps': {'ami_analyze': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'}, 'ami_average': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'}, 'ami_normalize': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'}}} INFO stpipe.Ami3Pipeline:pipeline.py:358 Prefetching reference files for dataset: 'jw01093007001_03102_00001_nis_cal.fits' reftypes = ['throughput'] INFO stpipe.Ami3Pipeline:pipeline.py:366 Prefetch for THROUGHPUT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits'. INFO stpipe.Ami3Pipeline:calwebb_ami3.py:43 Starting calwebb_ami3 INFO stpipe.Ami3Pipeline:calwebb_ami3.py:43 Starting calwebb_ami3 INFO stpipe.Ami3Pipeline:calwebb_ami3.py:74 No PSF reference members found in association table INFO stpipe.Ami3Pipeline:calwebb_ami3.py:74 No PSF reference members found in association table INFO stpipe.Ami3Pipeline:calwebb_ami3.py:75 ami_normalize step will be skipped INFO stpipe.Ami3Pipeline:calwebb_ami3.py:75 ami_normalize step will be skipped DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00001_nis_cal.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00001_nis_cal.fits INFO stpipe.Ami3Pipeline.ami_analyze:step.py:430 Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00001_nis_cal.fits',). INFO stpipe.Ami3Pipeline.ami_analyze:step.py:434 Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:45 Oversampling factor = 3 INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:46 Initial rotation guess = 0.0 deg INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:47 Initial values to use for psf offset = [0.0, 0.0] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:61 Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits INFO stpipe.Ami3Pipeline.ami_analyze:utils.py:1173 Applying median filter for 0 NaN and 12 DO_NOT_USE pixels INFO stpipe.Ami3Pipeline.ami_analyze:utils.py:1173 Applying median filter for 0 NaN and 12 DO_NOT_USE pixels INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39833548e+08+8.02117596e-09j 3.44680216e+08-1.96228326e-08j 3.42440868e+08+1.42344638e-08j ... 3.57282519e+08-2.91601578e-09j 3.71703099e+08-3.06849819e-08j 3.55155593e+08-8.71414309e-09j] [3.63365659e+08+3.09890243e-10j 3.62316665e+08-2.01330945e-08j 3.59743426e+08+1.84185923e-09j ... 3.82346158e+08-3.96817218e-09j 3.93308966e+08-3.53784653e-08j 3.79060991e+08-7.99063602e-09j] [4.17983316e+08+1.47281410e-09j 3.97347125e+08-1.80221219e-08j 3.68498083e+08+7.37562475e-10j ... 3.74462809e+08-5.46260095e-09j 3.94378557e+08-3.39227830e-08j 4.12806884e+08-7.54998987e-09j] ... [2.72626493e+08+4.23424486e-09j 2.73997777e+08-2.55756368e-08j 2.80266461e+08+1.05521269e-08j ... 2.77073371e+08-4.67954893e-09j 2.65280975e+08-2.38356880e-08j 2.69642139e+08-1.50949162e-08j] [2.93659078e+08+2.86447132e-09j 2.92115678e+08-2.82961890e-08j 2.92070056e+08+8.47322835e-10j ... 2.89390393e+08-2.46557056e-09j 2.85430904e+08-3.01305111e-08j 2.89632729e+08-1.39249708e-08j] [3.17981753e+08-3.56823832e-09j 3.16718705e+08-2.41227765e-08j 3.09870818e+08+2.86971856e-09j ... 3.11642431e+08-6.98241110e-09j 3.22829929e+08-3.51358644e-08j 3.21272392e+08-2.40436301e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39833548e+08+8.02117596e-09j 3.44680216e+08-1.96228326e-08j 3.42440868e+08+1.42344638e-08j ... 3.57282519e+08-2.91601578e-09j 3.71703099e+08-3.06849819e-08j 3.55155593e+08-8.71414309e-09j] [3.63365659e+08+3.09890243e-10j 3.62316665e+08-2.01330945e-08j 3.59743426e+08+1.84185923e-09j ... 3.82346158e+08-3.96817218e-09j 3.93308966e+08-3.53784653e-08j 3.79060991e+08-7.99063602e-09j] [4.17983316e+08+1.47281410e-09j 3.97347125e+08-1.80221219e-08j 3.68498083e+08+7.37562475e-10j ... 3.74462809e+08-5.46260095e-09j 3.94378557e+08-3.39227830e-08j 4.12806884e+08-7.54998987e-09j] ... [2.72626493e+08+4.23424486e-09j 2.73997777e+08-2.55756368e-08j 2.80266461e+08+1.05521269e-08j ... 2.77073371e+08-4.67954893e-09j 2.65280975e+08-2.38356880e-08j 2.69642139e+08-1.50949162e-08j] [2.93659078e+08+2.86447132e-09j 2.92115678e+08-2.82961890e-08j 2.92070056e+08+8.47322835e-10j ... 2.89390393e+08-2.46557056e-09j 2.85430904e+08-3.01305111e-08j 2.89632729e+08-1.39249708e-08j] [3.17981753e+08-3.56823832e-09j 3.16718705e+08-2.41227765e-08j 3.09870818e+08+2.86971856e-09j ... 3.11642431e+08-6.98241110e-09j 3.22829929e+08-3.51358644e-08j 3.21272392e+08-2.40436301e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301166872992.57135+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301166872992.57135+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301166890328.96796: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301166890328.96796: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301166872992.57135: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301166872992.57135: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640888: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640888: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39764511e+08+4.51035574e-10j 3.44415051e+08-2.27413947e-08j 3.42192085e+08-6.96322982e-09j ... 3.57150277e+08-9.84757689e-09j 3.73325536e+08-1.39911785e-08j 3.56545476e+08-1.79993240e-08j] [3.63074592e+08-1.44049254e-09j 3.61851832e+08-2.31772471e-08j 3.60473451e+08-5.23657297e-10j ... 3.81902706e+08-8.50300086e-09j 3.94046703e+08-2.10502995e-08j 3.80129434e+08-1.26155427e-08j] [4.18466006e+08-2.82314535e-09j 3.97585273e+08-1.09543434e-08j 3.69009215e+08-5.28975957e-09j ... 3.73122634e+08-7.73754918e-09j 3.93190242e+08-1.53008508e-08j 4.12826556e+08-2.52752817e-08j] ... [2.72428633e+08+5.83080257e-09j 2.73835510e+08-8.22785395e-09j 2.80660928e+08+9.97845194e-09j ... 2.78781964e+08-7.77639463e-09j 2.65944089e+08-5.83298113e-09j 2.69236643e+08+2.49077064e-08j] [2.93552951e+08+1.11962401e-08j 2.92344404e+08-2.67559930e-08j 2.91480411e+08-7.83733426e-09j ... 2.89890966e+08-1.52164698e-08j 2.85393188e+08+1.68913120e-09j 2.88688482e+08-5.82168884e-09j] [3.17860675e+08-4.38197188e-09j 3.16705098e+08-3.08493639e-08j 3.08668736e+08-6.77735774e-09j ... 3.10956683e+08-5.58666346e-09j 3.23056632e+08-7.46079646e-09j 3.21096471e+08-1.65649894e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39764511e+08+4.51035574e-10j 3.44415051e+08-2.27413947e-08j 3.42192085e+08-6.96322982e-09j ... 3.57150277e+08-9.84757689e-09j 3.73325536e+08-1.39911785e-08j 3.56545476e+08-1.79993240e-08j] [3.63074592e+08-1.44049254e-09j 3.61851832e+08-2.31772471e-08j 3.60473451e+08-5.23657297e-10j ... 3.81902706e+08-8.50300086e-09j 3.94046703e+08-2.10502995e-08j 3.80129434e+08-1.26155427e-08j] [4.18466006e+08-2.82314535e-09j 3.97585273e+08-1.09543434e-08j 3.69009215e+08-5.28975957e-09j ... 3.73122634e+08-7.73754918e-09j 3.93190242e+08-1.53008508e-08j 4.12826556e+08-2.52752817e-08j] ... [2.72428633e+08+5.83080257e-09j 2.73835510e+08-8.22785395e-09j 2.80660928e+08+9.97845194e-09j ... 2.78781964e+08-7.77639463e-09j 2.65944089e+08-5.83298113e-09j 2.69236643e+08+2.49077064e-08j] [2.93552951e+08+1.11962401e-08j 2.92344404e+08-2.67559930e-08j 2.91480411e+08-7.83733426e-09j ... 2.89890966e+08-1.52164698e-08j 2.85393188e+08+1.68913120e-09j 2.88688482e+08-5.82168884e-09j] [3.17860675e+08-4.38197188e-09j 3.16705098e+08-3.08493639e-08j 3.08668736e+08-6.77735774e-09j ... 3.10956683e+08-5.58666346e-09j 3.23056632e+08-7.46079646e-09j 3.21096471e+08-1.65649894e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301135331379.6033+3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301135331379.6033+3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301135348714.184: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301135348714.184: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301135331379.6033: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301135331379.6033: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640882: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640882: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39723078e+08-2.12968934e-10j 3.43947423e+08+5.20870878e-09j 3.41963908e+08-1.76947128e-08j ... 3.56690349e+08-1.54523229e-08j 3.74460417e+08-1.62126727e-08j 3.57933698e+08-2.61985043e-08j] [3.63165947e+08-1.66422235e-09j 3.61344646e+08+3.75708421e-09j 3.60921407e+08-1.12926965e-08j ... 3.81328841e+08-7.50111760e-09j 3.94476250e+08-1.01721343e-08j 3.81342804e+08-2.63404063e-08j] [4.19022051e+08-1.33824522e-08j 3.97936160e+08+3.60799811e-09j 3.69505977e+08-1.13646297e-08j ... 3.72033289e+08-7.73980785e-09j 3.91965673e+08-1.25746939e-08j 4.12743148e+08-2.56164277e-08j] ... [2.72106463e+08+1.41959373e-08j 2.73465200e+08+1.05756029e-08j 2.80798910e+08-4.44039814e-09j ... 2.80084801e+08-8.48955862e-09j 2.67007395e+08-1.55697922e-08j 2.68967055e+08-3.26850146e-08j] [2.93298855e+08+1.65441326e-08j 2.92662216e+08+4.91300798e-09j 2.91218635e+08-1.41406548e-08j ... 2.90047664e+08-6.89837382e-09j 2.85765803e+08-2.16909738e-08j 2.88048890e+08-2.93810232e-08j] [3.17637857e+08+1.17475991e-08j 3.16809189e+08+1.39701061e-09j 3.08027235e+08-1.23215521e-08j ... 3.10103874e+08-1.40960808e-08j 3.23323595e+08-9.86819775e-09j 3.21112808e+08-1.70437614e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39723078e+08-2.12968934e-10j 3.43947423e+08+5.20870878e-09j 3.41963908e+08-1.76947128e-08j ... 3.56690349e+08-1.54523229e-08j 3.74460417e+08-1.62126727e-08j 3.57933698e+08-2.61985043e-08j] [3.63165947e+08-1.66422235e-09j 3.61344646e+08+3.75708421e-09j 3.60921407e+08-1.12926965e-08j ... 3.81328841e+08-7.50111760e-09j 3.94476250e+08-1.01721343e-08j 3.81342804e+08-2.63404063e-08j] [4.19022051e+08-1.33824522e-08j 3.97936160e+08+3.60799811e-09j 3.69505977e+08-1.13646297e-08j ... 3.72033289e+08-7.73980785e-09j 3.91965673e+08-1.25746939e-08j 4.12743148e+08-2.56164277e-08j] ... [2.72106463e+08+1.41959373e-08j 2.73465200e+08+1.05756029e-08j 2.80798910e+08-4.44039814e-09j ... 2.80084801e+08-8.48955862e-09j 2.67007395e+08-1.55697922e-08j 2.68967055e+08-3.26850146e-08j] [2.93298855e+08+1.65441326e-08j 2.92662216e+08+4.91300798e-09j 2.91218635e+08-1.41406548e-08j ... 2.90047664e+08-6.89837382e-09j 2.85765803e+08-2.16909738e-08j 2.88048890e+08-2.93810232e-08j] [3.17637857e+08+1.17475991e-08j 3.16809189e+08+1.39701061e-09j 3.08027235e+08-1.23215521e-08j ... 3.10103874e+08-1.40960808e-08j 3.23323595e+08-9.86819775e-09j 3.21112808e+08-1.70437614e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301115365394.6256+2.117582368135751e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301115365394.6256+2.117582368135751e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301115382728.0572: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301115382728.0572: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301115365394.6256: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301115365394.6256: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640886: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640886: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39733510e+08-9.55561003e-09j 3.43290980e+08-1.46171800e-08j 3.41730369e+08-9.88986427e-09j ... 3.55953898e+08+4.31138276e-09j 3.75043649e+08-2.35326547e-08j 3.59225891e+08-2.91225528e-08j] [3.63662923e+08-1.18792834e-08j 3.60828068e+08-1.25022107e-08j 3.61072379e+08-1.22507971e-08j ... 3.80650431e+08-5.81413314e-09j 3.94603172e+08-1.39966570e-08j 3.82693536e+08-2.54831942e-08j] [4.19629572e+08-1.02832058e-08j 3.98380744e+08-1.56358140e-08j 3.70037103e+08-2.06582815e-08j ... 3.71210589e+08+1.91031675e-09j 3.90739620e+08-6.79795219e-09j 4.12609759e+08-1.54437525e-08j] ... [2.71676669e+08-2.66328199e-08j 2.72874216e+08-1.99094475e-08j 2.80609724e+08-1.35786675e-08j ... 2.80812332e+08-4.96978327e-09j 2.68357586e+08-1.73455766e-08j 2.68918183e+08-2.45680639e-08j] [2.92964328e+08-2.79501706e-08j 2.92979062e+08-2.00149242e-08j 2.91218916e+08-1.06813561e-08j ... 2.89844485e+08-3.05687421e-09j 2.86459210e+08-1.22165779e-08j 2.87791131e+08-2.53363714e-08j] [3.17380146e+08-2.89664597e-08j 3.16993410e+08-3.20225254e-08j 3.07936496e+08-1.03640724e-08j ... 3.09160394e+08+1.12564556e-08j 3.23567221e+08-1.47702263e-08j 3.21300714e+08-1.66131675e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39733510e+08-9.55561003e-09j 3.43290980e+08-1.46171800e-08j 3.41730369e+08-9.88986427e-09j ... 3.55953898e+08+4.31138276e-09j 3.75043649e+08-2.35326547e-08j 3.59225891e+08-2.91225528e-08j] [3.63662923e+08-1.18792834e-08j 3.60828068e+08-1.25022107e-08j 3.61072379e+08-1.22507971e-08j ... 3.80650431e+08-5.81413314e-09j 3.94603172e+08-1.39966570e-08j 3.82693536e+08-2.54831942e-08j] [4.19629572e+08-1.02832058e-08j 3.98380744e+08-1.56358140e-08j 3.70037103e+08-2.06582815e-08j ... 3.71210589e+08+1.91031675e-09j 3.90739620e+08-6.79795219e-09j 4.12609759e+08-1.54437525e-08j] ... [2.71676669e+08-2.66328199e-08j 2.72874216e+08-1.99094475e-08j 2.80609724e+08-1.35786675e-08j ... 2.80812332e+08-4.96978327e-09j 2.68357586e+08-1.73455766e-08j 2.68918183e+08-2.45680639e-08j] [2.92964328e+08-2.79501706e-08j 2.92979062e+08-2.00149242e-08j 2.91218916e+08-1.06813561e-08j ... 2.89844485e+08-3.05687421e-09j 2.86459210e+08-1.22165779e-08j 2.87791131e+08-2.53363714e-08j] [3.17380146e+08-2.89664597e-08j 3.16993410e+08-3.20225254e-08j 3.07936496e+08-1.03640724e-08j ... 3.09160394e+08+1.12564556e-08j 3.23567221e+08-1.47702263e-08j 3.21300714e+08-1.66131675e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301109251546.1576+4.235164736271502e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301109251546.1576+4.235164736271502e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301109268879.2372: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301109268879.2372: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301109251546.1576: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301109251546.1576: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640884: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640884: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39811173e+08-4.18322438e-09j 3.42492574e+08+6.73663109e-09j 3.41476014e+08-9.73334008e-09j ... 3.55005033e+08-8.96868889e-09j 3.75071034e+08+9.59532423e-10j 3.60342795e+08-1.14875036e-08j] [3.64542759e+08-5.93044757e-09j 3.60328138e+08+7.31879090e-09j 3.60952824e+08-4.89870155e-09j ... 3.79906112e+08-1.24098399e-08j 3.94444977e+08+5.61253569e-09j 3.84150219e+08-1.54181117e-08j] [4.20279358e+08-3.16459032e-09j 3.98879947e+08+7.46422685e-09j 3.70627642e+08-1.27528625e-08j ... 3.70661665e+08-1.16607932e-08j 3.89528559e+08+4.50215390e-10j 4.12473371e+08-6.97640988e-09j] ... [2.71185502e+08-9.78769463e-09j 2.72073262e+08-2.21181925e-08j 2.80051810e+08-1.71242894e-08j ... 2.80884088e+08-1.91561421e-09j 2.69847105e+08+1.09053482e-08j 2.69153264e+08+7.56432418e-11j] [2.92625036e+08-6.26314532e-09j 2.93226432e+08-1.02769066e-10j 2.91384084e+08-2.24975879e-08j ... 2.89302532e+08+7.04755685e-09j 2.87368397e+08+1.29912100e-08j 2.87938022e+08+2.63702671e-10j] [3.17152879e+08+9.67824405e-10j 3.17236531e+08+1.58916527e-10j 3.08325595e+08-1.60676151e-08j ... 3.08189367e+08+2.82671359e-10j 3.23745384e+08+4.51896002e-10j 3.21619332e+08-1.20559417e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39811173e+08-4.18322438e-09j 3.42492574e+08+6.73663109e-09j 3.41476014e+08-9.73334008e-09j ... 3.55005033e+08-8.96868889e-09j 3.75071034e+08+9.59532423e-10j 3.60342795e+08-1.14875036e-08j] [3.64542759e+08-5.93044757e-09j 3.60328138e+08+7.31879090e-09j 3.60952824e+08-4.89870155e-09j ... 3.79906112e+08-1.24098399e-08j 3.94444977e+08+5.61253569e-09j 3.84150219e+08-1.54181117e-08j] [4.20279358e+08-3.16459032e-09j 3.98879947e+08+7.46422685e-09j 3.70627642e+08-1.27528625e-08j ... 3.70661665e+08-1.16607932e-08j 3.89528559e+08+4.50215390e-10j 4.12473371e+08-6.97640988e-09j] ... [2.71185502e+08-9.78769463e-09j 2.72073262e+08-2.21181925e-08j 2.80051810e+08-1.71242894e-08j ... 2.80884088e+08-1.91561421e-09j 2.69847105e+08+1.09053482e-08j 2.69153264e+08+7.56432418e-11j] [2.92625036e+08-6.26314532e-09j 2.93226432e+08-1.02769066e-10j 2.91384084e+08-2.24975879e-08j ... 2.89302532e+08+7.04755685e-09j 2.87368397e+08+1.29912100e-08j 2.87938022e+08+2.63702671e-10j] [3.17152879e+08+9.67824405e-10j 3.17236531e+08+1.58916527e-10j 3.08325595e+08-1.60676151e-08j ... 3.08189367e+08+2.82671359e-10j 3.23745384e+08+4.51896002e-10j 3.21619332e+08-1.20559417e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301114799867.0482+2.117582368135751e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301114799867.0482+2.117582368135751e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301114817200.44727: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301114817200.44727: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301114799867.0482: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301114799867.0482: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640886: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640886: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39956924e+08-9.26042895e-09j 3.41626058e+08+1.00567157e-08j 3.41206834e+08+1.05794220e-09j ... 3.53908173e+08-8.78040787e-09j 3.74594265e+08-1.17302718e-08j 3.61236389e+08-2.79890415e-10j] [3.65745437e+08-7.07380144e-09j 3.59855848e+08+1.76642094e-09j 3.60616488e+08+7.09870073e-09j ... 3.79150232e+08-1.25525111e-09j 3.94028327e+08-2.34231990e-09j 3.85664409e+08-2.38871123e-09j] [4.20981294e+08-1.01335439e-08j 3.99383620e+08+2.34420066e-09j 3.71271376e+08-4.10798770e-09j ... 3.70388197e+08-1.32915016e-08j 3.88328694e+08-1.16575123e-08j 4.12360794e+08-1.19214226e-08j] ... [2.70708874e+08-6.81152818e-09j 2.71102380e+08+2.21453491e-09j 2.79119927e+08+1.86001125e-09j ... 2.80309268e+08-1.72440831e-08j 2.71315596e+08-1.34955924e-08j 2.69702068e+08-1.13591964e-08j] [2.92348139e+08+1.44445400e-09j 2.93363666e+08-3.88534737e-09j 2.91597094e+08+3.63163203e-09j ... 2.88466172e+08-5.12791358e-09j 2.88391062e+08-1.43032045e-08j 2.88460062e+08-1.64843460e-09j] [3.16998583e+08-1.74314242e-08j 3.17536330e+08+2.59787258e-09j 3.09086843e+08+8.21253653e-09j ... 3.07223963e+08-1.38201672e-08j 3.23841816e+08-7.17088573e-09j 3.22017912e+08-1.83140089e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.39956924e+08-9.26042895e-09j 3.41626058e+08+1.00567157e-08j 3.41206834e+08+1.05794220e-09j ... 3.53908173e+08-8.78040787e-09j 3.74594265e+08-1.17302718e-08j 3.61236389e+08-2.79890415e-10j] [3.65745437e+08-7.07380144e-09j 3.59855848e+08+1.76642094e-09j 3.60616488e+08+7.09870073e-09j ... 3.79150232e+08-1.25525111e-09j 3.94028327e+08-2.34231990e-09j 3.85664409e+08-2.38871123e-09j] [4.20981294e+08-1.01335439e-08j 3.99383620e+08+2.34420066e-09j 3.71271376e+08-4.10798770e-09j ... 3.70388197e+08-1.32915016e-08j 3.88328694e+08-1.16575123e-08j 4.12360794e+08-1.19214226e-08j] ... [2.70708874e+08-6.81152818e-09j 2.71102380e+08+2.21453491e-09j 2.79119927e+08+1.86001125e-09j ... 2.80309268e+08-1.72440831e-08j 2.71315596e+08-1.34955924e-08j 2.69702068e+08-1.13591964e-08j] [2.92348139e+08+1.44445400e-09j 2.93363666e+08-3.88534737e-09j 2.91597094e+08+3.63163203e-09j ... 2.88466172e+08-5.12791358e-09j 2.88391062e+08-1.43032045e-08j 2.88460062e+08-1.64843460e-09j] [3.16998583e+08-1.74314242e-08j 3.17536330e+08+2.59787258e-09j 3.09086843e+08+8.21253653e-09j ... 3.07223963e+08-1.38201672e-08j 3.23841816e+08-7.17088573e-09j 3.22017912e+08-1.83140089e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301129452050.46265+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301129452050.46265+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301129469384.70514: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301129469384.70514: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301129452050.46265: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301129452050.46265: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640886: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640886: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.185995 5.205654 6.1074595 ... 0.3203436 0.1606032 1.5618914 ] [ 1.9045541 -2.323912 3.8291364 ... 1.3400652 -0.5055471 0.58441323] [ 2.3086593 2.6519392 -0.79677534 ... 2.2927854 3.2722006 -1.8696215 ] ... [18.55178 6.3704615 1.4899126 ... 21.25258 11.08013 9.912871 ] [12.46574 11.485581 21.554956 ... 22.10457 21.746408 19.473381 ] [13.222706 14.0870285 18.240232 ... 14.654252 12.638202 19.307026 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20436.64257358 +0.j -15930.14625312-1229.99710598j 9786.55722454+1433.00528343j ... -4413.8310811 +955.10996339j 9786.55722454-1433.00528343j -15930.14625312+1229.99710598j] [-14426.05618251+7131.9288333j 12473.18248151-5076.06519165j -8252.37318989+2692.40978196j ... 3249.23011929-2679.22178009j -7196.74050318+4909.71100116j 11600.22639473-6843.70182552j] [ 5982.01155493-7865.40199754j -5693.34269451+6384.10950251j 4013.24536611-3935.97326748j ... -1026.07040174+2490.98461247j 2722.01779614-4907.24992318j -4717.38819706+7117.0526136j ] ... [ -1013.05098051-5059.64083023j 463.99264242+3911.33745763j -60.72920605-2224.24778037j ... 410.94489154 +872.8758465j -746.98184124-2075.69422728j 1035.07779424+3808.69255192j] [ 5982.01155493+7865.40199754j -4717.38819706-7117.0526136j 2722.01779614+4907.24992318j ... -2076.64235458-1699.32069062j 4013.24536611+3935.97326748j -5693.34269451-6384.10950251j] [-14426.05618251-7131.9288333j 11600.22639473+6843.70182552j -7196.74050318-4909.71100116j ... 4141.65961436+1022.60914822j -8252.37318989-2692.40978196j 12473.18248151+5076.06519165j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.40157483e+08-9.07742438e-09j 3.40780142e+08-1.41022624e-08j 3.40948388e+08-1.95298202e-08j ... 3.52726763e+08-2.23526930e-08j 3.73713818e+08-6.02780121e-09j 3.61896391e+08-5.00061169e-09j] [3.67183365e+08-4.71053375e-09j 3.59403036e+08-1.51961814e-08j 3.60129728e+08-1.85525604e-08j ... 3.78446387e+08-1.41677836e-08j 3.93391023e+08-4.94113548e-09j 3.87180826e+08+1.25975060e-09j] [4.21763496e+08-1.50437096e-08j 3.99842093e+08-1.13373985e-08j 3.71935020e+08-2.75333736e-08j ... 3.70382949e+08-1.21663523e-08j 3.87116467e+08-7.99230976e-09j 4.12273369e+08+6.78643964e-09j] ... [2.70340051e+08-2.81015783e-08j 2.70024145e+08-1.34959252e-08j 2.77843622e+08-1.68105412e-08j ... 2.79166135e+08-3.14996158e-08j 2.72616426e+08-1.02112831e-08j 2.70564173e+08-1.64706428e-10j] [2.92178129e+08-1.50896832e-08j 2.93376502e+08-1.80137188e-08j 2.91742858e+08-3.82992401e-08j ... 2.87386107e+08-1.78597973e-08j 2.89432739e+08+1.34398686e-08j 2.89287001e+08+5.96753405e-09j] [3.16930107e+08-1.01598373e-08j 3.17910265e+08-1.28549768e-08j 3.10103321e+08-1.88934642e-08j ... 3.06265402e+08-1.45914428e-08j 3.23856671e+08-2.78944449e-09j 3.22442592e+08-9.72094118e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.40157483e+08-9.07742438e-09j 3.40780142e+08-1.41022624e-08j 3.40948388e+08-1.95298202e-08j ... 3.52726763e+08-2.23526930e-08j 3.73713818e+08-6.02780121e-09j 3.61896391e+08-5.00061169e-09j] [3.67183365e+08-4.71053375e-09j 3.59403036e+08-1.51961814e-08j 3.60129728e+08-1.85525604e-08j ... 3.78446387e+08-1.41677836e-08j 3.93391023e+08-4.94113548e-09j 3.87180826e+08+1.25975060e-09j] [4.21763496e+08-1.50437096e-08j 3.99842093e+08-1.13373985e-08j 3.71935020e+08-2.75333736e-08j ... 3.70382949e+08-1.21663523e-08j 3.87116467e+08-7.99230976e-09j 4.12273369e+08+6.78643964e-09j] ... [2.70340051e+08-2.81015783e-08j 2.70024145e+08-1.34959252e-08j 2.77843622e+08-1.68105412e-08j ... 2.79166135e+08-3.14996158e-08j 2.72616426e+08-1.02112831e-08j 2.70564173e+08-1.64706428e-10j] [2.92178129e+08-1.50896832e-08j 2.93376502e+08-1.80137188e-08j 2.91742858e+08-3.82992401e-08j ... 2.87386107e+08-1.78597973e-08j 2.89432739e+08+1.34398686e-08j 2.89287001e+08+5.96753405e-09j] [3.16930107e+08-1.01598373e-08j 3.17910265e+08-1.28549768e-08j 3.10103321e+08-1.88934642e-08j ... 3.06265402e+08-1.45914428e-08j 3.23856671e+08-2.78944449e-09j 3.22442592e+08-9.72094118e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1634931.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301159542932.48096+3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301159542932.48096+3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301159560268.45557: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301159560268.45557: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301159542932.48096: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301159542932.48096: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640886: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000575640886: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=46, peaky=39, distance to edge=33 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=46, peaky=39, distance to edge=33 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.07288604251506392, -0.15693155958152186) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.07288604251506392, -0.15693155958152186) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00072057 0.0007435 0.00076635 ... 0.00085464 0.00083005 0.00080536] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00072057 0.0007435 0.00076635 ... 0.00085464 0.00083005 0.00080536] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00075136 0.00077462 0.00079779 ... 0.00088944 0.00086452 0.00083948] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00075136 0.00077462 0.00079779 ... 0.00088944 0.00086452 0.00083948] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0007829 0.00080649 0.00082997 ... 0.00092503 0.00089979 0.00087441] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0007829 0.00080649 0.00082997 ... 0.00092503 0.00089979 0.00087441] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00071841 0.00074263 0.00076682 ... 0.00075773 0.00073548 0.00071314] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00071841 0.00074263 0.00076682 ... 0.00075773 0.00073548 0.00071314] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0006869 0.00071071 0.00073452 ... 0.0007276 0.00070566 0.00068364] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0006869 0.00071071 0.00073452 ... 0.0007276 0.00070566 0.00068364] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0006562 0.00067961 0.00070302 ... 0.00069819 0.00067656 0.00065488]] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0006562 0.00067961 0.00070302 ... 0.00069819 0.00067656 0.00065488]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] INFO stpipe.Ami3Pipeline.ami_analyze:step.py:546 Step ami_analyze done INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw01093007001_03102_00001_nis_a3001_ami.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00012_nis_cal.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00012_nis_cal.fits INFO stpipe.Ami3Pipeline.ami_analyze:step.py:430 Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00012_nis_cal.fits',). INFO stpipe.Ami3Pipeline.ami_analyze:step.py:434 Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:45 Oversampling factor = 3 INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:46 Initial rotation guess = 0.0 deg INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:47 Initial values to use for psf offset = [0.0, 0.0] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:61 Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits INFO stpipe.Ami3Pipeline.ami_analyze:utils.py:1173 Applying median filter for 0 NaN and 13 DO_NOT_USE pixels INFO stpipe.Ami3Pipeline.ami_analyze:utils.py:1173 Applying median filter for 0 NaN and 13 DO_NOT_USE pixels INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.46448753e+08-1.08071130e-09j 3.52233289e+08-1.09276811e-08j 3.39266252e+08+8.35175073e-09j ... 3.80411908e+08-1.42875949e-08j 3.71557023e+08-3.56347458e-09j 3.48085695e+08-1.29446694e-08j] [3.70839370e+08+6.92335197e-09j 3.64833862e+08-6.85480599e-09j 3.51980752e+08+9.51077192e-09j ... 3.92081925e+08-6.32402830e-09j 3.92028677e+08+5.12496047e-10j 3.79511646e+08-1.95669700e-08j] [4.22523249e+08+1.43443188e-08j 3.86419174e+08+7.86610639e-10j 3.60173116e+08+1.75922169e-08j ... 3.84564012e+08-8.22126526e-09j 4.11615101e+08-3.27243628e-09j 4.33297158e+08-2.18940973e-08j] ... [2.78732971e+08+1.26917881e-08j 2.83347328e+08-2.80966250e-09j 2.83426373e+08+2.07847233e-10j ... 2.73918829e+08-8.12608469e-09j 2.72410156e+08+6.00978582e-09j 2.78673940e+08-6.10107188e-09j] [2.98891957e+08+6.80464651e-09j 2.95648091e+08-1.43730579e-08j 2.96685510e+08+7.67639484e-09j ... 2.93395425e+08-9.17532125e-10j 2.95572404e+08+8.64257348e-09j 2.99443768e+08-2.14190113e-08j] [3.25273633e+08+3.51090771e-09j 3.22075837e+08-5.57117749e-10j 3.13271378e+08-1.75047226e-08j ... 3.34852698e+08-2.11573114e-08j 3.35435120e+08-2.58901793e-09j 3.26098631e+08-1.93389278e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.46448753e+08-1.08071130e-09j 3.52233289e+08-1.09276811e-08j 3.39266252e+08+8.35175073e-09j ... 3.80411908e+08-1.42875949e-08j 3.71557023e+08-3.56347458e-09j 3.48085695e+08-1.29446694e-08j] [3.70839370e+08+6.92335197e-09j 3.64833862e+08-6.85480599e-09j 3.51980752e+08+9.51077192e-09j ... 3.92081925e+08-6.32402830e-09j 3.92028677e+08+5.12496047e-10j 3.79511646e+08-1.95669700e-08j] [4.22523249e+08+1.43443188e-08j 3.86419174e+08+7.86610639e-10j 3.60173116e+08+1.75922169e-08j ... 3.84564012e+08-8.22126526e-09j 4.11615101e+08-3.27243628e-09j 4.33297158e+08-2.18940973e-08j] ... [2.78732971e+08+1.26917881e-08j 2.83347328e+08-2.80966250e-09j 2.83426373e+08+2.07847233e-10j ... 2.73918829e+08-8.12608469e-09j 2.72410156e+08+6.00978582e-09j 2.78673940e+08-6.10107188e-09j] [2.98891957e+08+6.80464651e-09j 2.95648091e+08-1.43730579e-08j 2.96685510e+08+7.67639484e-09j ... 2.93395425e+08-9.17532125e-10j 2.95572404e+08+8.64257348e-09j 2.99443768e+08-2.14190113e-08j] [3.25273633e+08+3.51090771e-09j 3.22075837e+08-5.57117749e-10j 3.13271378e+08-1.75047226e-08j ... 3.34852698e+08-2.11573114e-08j 3.35435120e+08-2.58901793e-09j 3.26098631e+08-1.93389278e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300938081617.6227-8.470329472543003e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300938081617.6227-8.470329472543003e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300938104427.0579: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300938104427.0579: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300938081617.6227: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300938081617.6227: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000757944463: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000757944463: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.45981643e+08-3.51680951e-10j 3.52246176e+08+1.13831208e-08j 3.39292850e+08+2.17920050e-08j ... 3.81532775e+08+1.45053968e-09j 3.73446328e+08-7.43892653e-09j 3.48468189e+08+7.27790514e-09j] [3.70319035e+08+1.46493859e-09j 3.65148036e+08+7.81809525e-09j 3.53096521e+08+1.80075192e-08j ... 3.91713528e+08+7.32320514e-09j 3.92743080e+08+1.25656121e-10j 3.79714509e+08+8.29249839e-09j] [4.23237749e+08+4.59597023e-09j 3.86739423e+08+6.14443129e-09j 3.60476887e+08+2.76855307e-08j ... 3.83035030e+08-2.67856626e-09j 4.10931569e+08+9.29577598e-09j 4.33889669e+08+1.99744512e-08j] ... [2.78777672e+08+1.31941943e-09j 2.83487729e+08+1.12781169e-08j 2.83271750e+08+1.31854952e-08j ... 2.75095691e+08+9.17095959e-09j 2.72016102e+08-3.82119725e-09j 2.78403580e+08+7.76328938e-09j] [2.99148690e+08-1.15522827e-10j 2.95176172e+08+2.57858434e-09j 2.95318766e+08+1.23682483e-08j ... 2.93530287e+08+2.41859570e-09j 2.94777151e+08+5.18880170e-09j 2.98924403e+08+1.01886433e-08j] [3.25252342e+08+2.63075219e-09j 3.21462989e+08+1.23238556e-08j 3.11803106e+08+1.12100511e-08j ... 3.35243340e+08-2.43518233e-09j 3.36005752e+08-5.05344755e-09j 3.26032418e+08-3.28778759e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.45981643e+08-3.51680951e-10j 3.52246176e+08+1.13831208e-08j 3.39292850e+08+2.17920050e-08j ... 3.81532775e+08+1.45053968e-09j 3.73446328e+08-7.43892653e-09j 3.48468189e+08+7.27790514e-09j] [3.70319035e+08+1.46493859e-09j 3.65148036e+08+7.81809525e-09j 3.53096521e+08+1.80075192e-08j ... 3.91713528e+08+7.32320514e-09j 3.92743080e+08+1.25656121e-10j 3.79714509e+08+8.29249839e-09j] [4.23237749e+08+4.59597023e-09j 3.86739423e+08+6.14443129e-09j 3.60476887e+08+2.76855307e-08j ... 3.83035030e+08-2.67856626e-09j 4.10931569e+08+9.29577598e-09j 4.33889669e+08+1.99744512e-08j] ... [2.78777672e+08+1.31941943e-09j 2.83487729e+08+1.12781169e-08j 2.83271750e+08+1.31854952e-08j ... 2.75095691e+08+9.17095959e-09j 2.72016102e+08-3.82119725e-09j 2.78403580e+08+7.76328938e-09j] [2.99148690e+08-1.15522827e-10j 2.95176172e+08+2.57858434e-09j 2.95318766e+08+1.23682483e-08j ... 2.93530287e+08+2.41859570e-09j 2.94777151e+08+5.18880170e-09j 2.98924403e+08+1.01886433e-08j] [3.25252342e+08+2.63075219e-09j 3.21462989e+08+1.23238556e-08j 3.11803106e+08+1.12100511e-08j ... 3.35243340e+08-2.43518233e-09j 3.36005752e+08-5.05344755e-09j 3.26032418e+08-3.28778759e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300906563966.28394+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300906563966.28394+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300906586773.33026: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300906586773.33026: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300906563966.28394: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300906563966.28394: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000075794446: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000075794446: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.45413564e+08+1.51640382e-08j 3.52040994e+08-3.87781003e-09j 3.39333758e+08+1.33945925e-08j ... 3.82100087e+08-3.96190799e-10j 3.75144759e+08-3.87468225e-10j 3.49041167e+08-2.17213709e-09j] [3.70016307e+08+1.21862893e-08j 3.65276289e+08-5.91745076e-09j 3.54080110e+08+9.32095002e-09j ... 3.91179369e+08+5.13512768e-10j 3.93429541e+08-5.40419119e-09j 3.80271785e+08+2.05129585e-09j] [4.23968436e+08+9.63431042e-09j 3.87128501e+08-6.85483624e-10j 3.60850604e+08+1.16483627e-08j ... 3.81585524e+08-4.36613517e-09j 4.10060932e+08-9.40965567e-09j 4.34300080e+08-4.86424141e-09j] ... [2.78669103e+08+1.03682894e-08j 2.83479213e+08+1.46603570e-09j 2.83150843e+08+9.84218536e-09j ... 2.76442793e+08-7.16351904e-09j 2.71992399e+08+5.18922788e-09j 2.78028023e+08-9.68405321e-09j] [2.99385320e+08+1.74903321e-08j 2.95146343e+08-1.18380852e-08j 2.94147904e+08+6.75891245e-09j ... 2.93799088e+08+3.71940304e-09j 2.94425103e+08-1.21010460e-08j 2.98389104e+08-2.66456425e-09j] [3.25123874e+08+1.62859177e-08j 3.21193714e+08-1.44896671e-09j 3.10613086e+08+4.52509101e-09j ... 3.35396293e+08-6.12481719e-09j 3.36647778e+08-2.62543953e-09j 3.25973281e+08+1.76025755e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.45413564e+08+1.51640382e-08j 3.52040994e+08-3.87781003e-09j 3.39333758e+08+1.33945925e-08j ... 3.82100087e+08-3.96190799e-10j 3.75144759e+08-3.87468225e-10j 3.49041167e+08-2.17213709e-09j] [3.70016307e+08+1.21862893e-08j 3.65276289e+08-5.91745076e-09j 3.54080110e+08+9.32095002e-09j ... 3.91179369e+08+5.13512768e-10j 3.93429541e+08-5.40419119e-09j 3.80271785e+08+2.05129585e-09j] [4.23968436e+08+9.63431042e-09j 3.87128501e+08-6.85483624e-10j 3.60850604e+08+1.16483627e-08j ... 3.81585524e+08-4.36613517e-09j 4.10060932e+08-9.40965567e-09j 4.34300080e+08-4.86424141e-09j] ... [2.78669103e+08+1.03682894e-08j 2.83479213e+08+1.46603570e-09j 2.83150843e+08+9.84218536e-09j ... 2.76442793e+08-7.16351904e-09j 2.71992399e+08+5.18922788e-09j 2.78028023e+08-9.68405321e-09j] [2.99385320e+08+1.74903321e-08j 2.95146343e+08-1.18380852e-08j 2.94147904e+08+6.75891245e-09j ... 2.93799088e+08+3.71940304e-09j 2.94425103e+08-1.21010460e-08j 2.98389104e+08-2.66456425e-09j] [3.25123874e+08+1.62859177e-08j 3.21193714e+08-1.44896671e-09j 3.10613086e+08+4.52509101e-09j ... 3.35396293e+08-6.12481719e-09j 3.36647778e+08-2.62543953e-09j 3.25973281e+08+1.76025755e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300886613149.1271+1.0587911840678754e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300886613149.1271+1.0587911840678754e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300886635954.6614: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300886635954.6614: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300886613149.1271: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300886613149.1271: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000757944465: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000757944465: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.44783812e+08-4.82292319e-09j 3.51598755e+08+8.50095943e-09j 3.39373476e+08-1.71529972e-09j ... 3.82102266e+08-6.40008777e-09j 3.76560141e+08-2.30264869e-08j 3.49788967e+08+1.07205849e-08j] [3.69955394e+08-8.16462286e-09j 3.65237037e+08+9.93445988e-09j 3.54893008e+08-4.54926149e-09j ... 3.90504743e+08-6.44654199e-10j 3.94108806e+08-8.10729740e-09j 3.81202631e+08+6.64665787e-09j] [4.24649164e+08-6.86019133e-09j 3.87612771e+08+1.48875528e-09j 3.61343489e+08+1.41336205e-09j ... 3.80224778e+08-5.12679519e-09j 4.09052326e+08-9.63872493e-09j 4.34522425e+08+1.36309680e-08j] ... [2.78375937e+08-3.87969141e-09j 2.83249600e+08+3.79954246e-09j 2.83009218e+08+1.80110957e-10j ... 2.77781798e+08-4.16821015e-09j 2.72371368e+08-9.60380001e-09j 2.77620582e+08+1.21046156e-08j] [2.99571377e+08-1.13195828e-08j 2.95464476e+08+8.69294284e-09j 2.93258051e+08-1.56946391e-08j ... 2.94133599e+08-2.49261867e-08j 2.94516744e+08-1.22652392e-08j 2.97940113e+08+8.90258504e-09j] [3.24906777e+08-4.77135658e-09j 3.21226412e+08+1.10539477e-08j 3.09803647e+08-1.31788012e-08j ... 3.35291530e+08+3.72866453e-11j 3.37274641e+08-2.44985453e-08j 3.25953042e+08+1.04697634e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.44783812e+08-4.82292319e-09j 3.51598755e+08+8.50095943e-09j 3.39373476e+08-1.71529972e-09j ... 3.82102266e+08-6.40008777e-09j 3.76560141e+08-2.30264869e-08j 3.49788967e+08+1.07205849e-08j] [3.69955394e+08-8.16462286e-09j 3.65237037e+08+9.93445988e-09j 3.54893008e+08-4.54926149e-09j ... 3.90504743e+08-6.44654199e-10j 3.94108806e+08-8.10729740e-09j 3.81202631e+08+6.64665787e-09j] [4.24649164e+08-6.86019133e-09j 3.87612771e+08+1.48875528e-09j 3.61343489e+08+1.41336205e-09j ... 3.80224778e+08-5.12679519e-09j 4.09052326e+08-9.63872493e-09j 4.34522425e+08+1.36309680e-08j] ... [2.78375937e+08-3.87969141e-09j 2.83249600e+08+3.79954246e-09j 2.83009218e+08+1.80110957e-10j ... 2.77781798e+08-4.16821015e-09j 2.72371368e+08-9.60380001e-09j 2.77620582e+08+1.21046156e-08j] [2.99571377e+08-1.13195828e-08j 2.95464476e+08+8.69294284e-09j 2.93258051e+08-1.56946391e-08j ... 2.94133599e+08-2.49261867e-08j 2.94516744e+08-1.22652392e-08j 2.97940113e+08+8.90258504e-09j] [3.24906777e+08-4.77135658e-09j 3.21226412e+08+1.10539477e-08j 3.09803647e+08-1.31788012e-08j ... 3.35291530e+08+3.72866453e-11j 3.37274641e+08-2.44985453e-08j 3.25953042e+08+1.04697634e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300880503945.2462-7.411538288475128e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300880503945.2462-7.411538288475128e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300880526750.31744: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300880526750.31744: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300880503945.2462: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300880503945.2462: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000757944465: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000757944465: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.44137965e+08+1.38607258e-08j 3.50938546e+08-4.18925877e-10j 3.39398710e+08+1.75550041e-08j ... 3.81577388e+08+4.74889963e-09j 3.77634131e+08+8.28535947e-09j 3.50672696e+08-9.04960233e-09j] [3.70126755e+08+1.72075684e-08j 3.65058534e+08+6.02145804e-09j 3.55541820e+08+1.72604083e-08j ... 3.89712292e+08+3.21831876e-09j 3.94783341e+08+1.44255106e-09j 3.82489195e+08-6.57868008e-09j] [4.25233163e+08+1.09503428e-08j 3.88179774e+08+7.18444983e-09j 3.61990950e+08+1.79915616e-08j ... 3.78954371e+08+3.03904959e-09j 4.07948135e+08+1.16323000e-08j 4.34590442e+08+5.42955332e-09j] ... [2.77897027e+08+2.86141644e-08j 2.82745508e+08+2.93778032e-09j 2.82790266e+08+3.04967364e-08j ... 2.78951884e+08+9.39750624e-09j 2.73136428e+08+1.22714574e-08j 2.77266698e+08-9.40107406e-09j] [2.99702130e+08+1.14444303e-08j 2.96010411e+08+6.94959792e-10j 2.92688729e+08+1.73848011e-08j ... 2.94476935e+08+1.28666543e-10j 2.95004945e+08+2.25285894e-08j 2.97655820e+08+4.93336691e-09j] [3.24646716e+08+2.09480182e-08j 3.21505058e+08+3.59722914e-09j 3.09410983e+08+1.36888752e-08j ... 3.34941987e+08-1.07449623e-09j 3.37814122e+08+6.53271928e-09j 3.25987981e+08+1.08306911e-10j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.44137965e+08+1.38607258e-08j 3.50938546e+08-4.18925877e-10j 3.39398710e+08+1.75550041e-08j ... 3.81577388e+08+4.74889963e-09j 3.77634131e+08+8.28535947e-09j 3.50672696e+08-9.04960233e-09j] [3.70126755e+08+1.72075684e-08j 3.65058534e+08+6.02145804e-09j 3.55541820e+08+1.72604083e-08j ... 3.89712292e+08+3.21831876e-09j 3.94783341e+08+1.44255106e-09j 3.82489195e+08-6.57868008e-09j] [4.25233163e+08+1.09503428e-08j 3.88179774e+08+7.18444983e-09j 3.61990950e+08+1.79915616e-08j ... 3.78954371e+08+3.03904959e-09j 4.07948135e+08+1.16323000e-08j 4.34590442e+08+5.42955332e-09j] ... [2.77897027e+08+2.86141644e-08j 2.82745508e+08+2.93778032e-09j 2.82790266e+08+3.04967364e-08j ... 2.78951884e+08+9.39750624e-09j 2.73136428e+08+1.22714574e-08j 2.77266698e+08-9.40107406e-09j] [2.99702130e+08+1.14444303e-08j 2.96010411e+08+6.94959792e-10j 2.92688729e+08+1.73848011e-08j ... 2.94476935e+08+1.28666543e-10j 2.95004945e+08+2.25285894e-08j 2.97655820e+08+4.93336691e-09j] [3.24646716e+08+2.09480182e-08j 3.21505058e+08+3.59722914e-09j 3.09410983e+08+1.36888752e-08j ... 3.34941987e+08-1.07449623e-09j 3.37814122e+08+6.53271928e-09j 3.25987981e+08+1.08306911e-10j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300886048051.1715+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300886048051.1715+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300886070856.6629: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300886070856.6629: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300886048051.1715: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300886048051.1715: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000757944463: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000757944463: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.43519402e+08+5.06569974e-10j 3.50116897e+08+1.06806288e-10j 3.39401314e+08-9.54472646e-10j ... 3.80600918e+08+6.45948398e-09j 3.78349826e+08-2.09016437e-09j 3.51638738e+08-9.48918683e-09j] [3.70490680e+08+8.76007141e-10j 3.64768137e+08+7.13262637e-09j 3.56068670e+08+2.12470138e-10j ... 3.88828121e+08+1.18846367e-08j 3.95437318e+08-3.98099253e-09j 3.84081779e+08-8.03146428e-09j] [4.25705220e+08-2.11277477e-09j 3.88780934e+08+5.09083725e-09j 3.62811472e+08+2.82440149e-10j ... 3.77769464e+08+1.07886788e-08j 4.06772448e+08-9.26011149e-10j 4.34569395e+08-4.61429523e-09j] ... [2.77266805e+08-2.86815879e-09j 2.81944580e+08+2.59375713e-09j 2.82440790e+08-3.90705018e-09j ... 2.79830498e+08+5.45401849e-09j 2.74224919e+08-1.64895491e-08j 2.77048771e+08-2.83007410e-08j] [2.99792784e+08-3.43431915e-10j 2.96657990e+08+8.31869240e-09j 2.92424550e+08-8.31569274e-09j ... 2.94787552e+08+1.92359591e-08j 2.95811507e+08-1.72018467e-08j 2.97576230e+08-1.90116418e-08j] [3.24401746e+08+2.46744269e-09j 3.21975368e+08+3.94442192e-09j 3.09408247e+08-8.42543716e-10j ... 3.34380940e+08+1.00973713e-08j 3.38222248e+08-1.21829327e-08j 3.26075023e+08-1.62795071e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.43519402e+08+5.06569974e-10j 3.50116897e+08+1.06806288e-10j 3.39401314e+08-9.54472646e-10j ... 3.80600918e+08+6.45948398e-09j 3.78349826e+08-2.09016437e-09j 3.51638738e+08-9.48918683e-09j] [3.70490680e+08+8.76007141e-10j 3.64768137e+08+7.13262637e-09j 3.56068670e+08+2.12470138e-10j ... 3.88828121e+08+1.18846367e-08j 3.95437318e+08-3.98099253e-09j 3.84081779e+08-8.03146428e-09j] [4.25705220e+08-2.11277477e-09j 3.88780934e+08+5.09083725e-09j 3.62811472e+08+2.82440149e-10j ... 3.77769464e+08+1.07886788e-08j 4.06772448e+08-9.26011149e-10j 4.34569395e+08-4.61429523e-09j] ... [2.77266805e+08-2.86815879e-09j 2.81944580e+08+2.59375713e-09j 2.82440790e+08-3.90705018e-09j ... 2.79830498e+08+5.45401849e-09j 2.74224919e+08-1.64895491e-08j 2.77048771e+08-2.83007410e-08j] [2.99792784e+08-3.43431915e-10j 2.96657990e+08+8.31869240e-09j 2.92424550e+08-8.31569274e-09j ... 2.94787552e+08+1.92359591e-08j 2.95811507e+08-1.72018467e-08j 2.97576230e+08-1.90116418e-08j] [3.24401746e+08+2.46744269e-09j 3.21975368e+08+3.94442192e-09j 3.09408247e+08-8.42543716e-10j ... 3.34380940e+08+1.00973713e-08j 3.38222248e+08-1.21829327e-08j 3.26075023e+08-1.62795071e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300900689103.5702-1.0587911840678754e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300900689103.5702-1.0587911840678754e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300900711910.1713: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300900711910.1713: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300900689103.5702: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300900689103.5702: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000757944463: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.0000000757944463: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 4.884343 7.159803 5.9913073 ... -3.112642 2.6297574 -0.90736777] [ 0.8815433 -3.037368 4.8185434 ... -1.7313797 -2.1026752 -0.65820354] [ 1.6406726 2.1164963 -1.9190518 ... 0.38528392 4.4809885 -0.18220095] ... [ 9.807307 8.019023 11.515744 ... 25.184109 8.742867 4.896557 ] [11.705979 14.913154 21.544895 ... 25.817276 18.967949 9.873757 ] [14.280293 16.915146 14.675294 ... 12.933635 11.964545 12.828399 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 2.04211172e+04 +0.j -1.58545616e+04-2013.95870035j 9.57708275e+03+2381.63912914j ... -4.21531823e+03+1605.26882241j 9.57708275e+03-2381.63912914j -1.58545616e+04+2013.95870035j] [-1.45684419e+04+6795.20185128j 1.27997198e+04-4157.95335055j -8.51461881e+03+1667.26400575j ... 2.87676450e+03-3063.46016262j -6.79126604e+03+5443.49369211j 1.14018331e+04-7149.74006392j] [ 6.33159341e+03-7573.75747231j -6.27333498e+03+5811.10956446j 4.52808382e+03-3313.85757829j ... -7.54574746e+02+2578.56878471j 2.45376738e+03-5037.17735433j -4.68577351e+03+7130.30206959j] ... [-1.34514308e+03-4976.08437209j 5.40774374e+02+3894.61596807j 1.03877275e+01-2212.25679258j ... 5.83840977e+02 +760.40986717j -1.07943978e+03-1925.04640084j 1.47327339e+03+3654.98207828j] [ 6.33159341e+03+7573.75747231j -4.68577351e+03-7130.30206959j 2.45376738e+03+5037.17735433j ... -2.35916888e+03-1263.7314413j 4.52808382e+03+3313.85757829j -6.27333498e+03-5811.10956446j] [-1.45684419e+04-6795.20185128j 1.14018331e+04+7149.74006392j -6.79126604e+03-5443.49369211j ... 4.25329802e+03 +301.81461001j -8.51461881e+03-1667.26400575j 1.27997198e+04+4157.95335055j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.42963359e+08+4.47762731e-09j 3.49217250e+08-1.73051324e-09j 3.39375493e+08-6.55359734e-09j ... 3.79279342e+08+1.29885675e-09j 3.78735990e+08+1.14666741e-09j 3.52629999e+08-1.89664054e-09j] [3.70984589e+08+5.57046105e-09j 3.64384327e+08-3.77010161e-09j 3.56538896e+08-1.06322236e-08j ... 3.87881345e+08+2.31741292e-09j 3.96038630e+08+4.70684900e-09j 3.85906005e+08-7.41657472e-11j] [4.26087468e+08-3.96248352e-09j 3.89343723e+08-4.13157926e-09j 3.63808204e+08-1.02643357e-08j ... 3.76659035e+08+1.22609717e-09j 4.05525353e+08-1.03611987e-09j 4.34543377e+08-6.98981087e-09j] ... [2.76548411e+08+7.28425286e-09j 2.80857242e+08+1.88892632e-09j 2.81914819e+08-1.18337462e-08j ... 2.80341930e+08+5.35709611e-09j 2.75544654e+08+2.66958087e-09j 2.77036874e+08-2.08128387e-10j] [2.99866843e+08-1.49264957e-09j 2.97295082e+08-5.80247787e-10j 2.92404018e+08-5.14338988e-09j ... 2.95031268e+08+4.99337612e-09j 2.96839263e+08+5.68087416e-09j 2.97697779e+08+3.62842475e-09j] [3.24229758e+08+1.63911269e-09j 3.22599474e+08-2.88309894e-09j 3.09720765e+08-6.00983949e-09j ... 3.33649285e+08+5.71183092e-10j 3.38486111e+08-2.04989545e-09j 3.26193341e+08+5.39364498e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.42963359e+08+4.47762731e-09j 3.49217250e+08-1.73051324e-09j 3.39375493e+08-6.55359734e-09j ... 3.79279342e+08+1.29885675e-09j 3.78735990e+08+1.14666741e-09j 3.52629999e+08-1.89664054e-09j] [3.70984589e+08+5.57046105e-09j 3.64384327e+08-3.77010161e-09j 3.56538896e+08-1.06322236e-08j ... 3.87881345e+08+2.31741292e-09j 3.96038630e+08+4.70684900e-09j 3.85906005e+08-7.41657472e-11j] [4.26087468e+08-3.96248352e-09j 3.89343723e+08-4.13157926e-09j 3.63808204e+08-1.02643357e-08j ... 3.76659035e+08+1.22609717e-09j 4.05525353e+08-1.03611987e-09j 4.34543377e+08-6.98981087e-09j] ... [2.76548411e+08+7.28425286e-09j 2.80857242e+08+1.88892632e-09j 2.81914819e+08-1.18337462e-08j ... 2.80341930e+08+5.35709611e-09j 2.75544654e+08+2.66958087e-09j 2.77036874e+08-2.08128387e-10j] [2.99866843e+08-1.49264957e-09j 2.97295082e+08-5.80247787e-10j 2.92404018e+08-5.14338988e-09j ... 2.95031268e+08+4.99337612e-09j 2.96839263e+08+5.68087416e-09j 2.97697779e+08+3.62842475e-09j] [3.24229758e+08+1.63911269e-09j 3.22599474e+08-2.88309894e-09j 3.09720765e+08-6.00983949e-09j ... 3.33649285e+08+5.71183092e-10j 3.38486111e+08-2.04989545e-09j 3.26193341e+08+5.39364498e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1633689.5: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300930757126.0549-1.6940658945086007e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300930757126.0549-1.6940658945086007e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300930779934.93494: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300930779934.93494: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300930757126.0549: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300930757126.0549: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000075794446: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000075794446: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=46, peaky=38, distance to edge=33 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=46, peaky=38, distance to edge=33 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.44524852888924993, -0.443002791206733) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.44524852888924993, -0.443002791206733) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00072203 0.00074634 0.00077062 ... 0.00106755 0.00104297 0.00101811] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00072203 0.00074634 0.00077062 ... 0.00106755 0.00104297 0.00101811] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0007538 0.0007785 0.00080315 ... 0.00110573 0.00108094 0.00105585] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0007538 0.0007785 0.00080315 ... 0.00110573 0.00108094 0.00105585] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00078636 0.00081145 0.00083646 ... 0.00114464 0.00111966 0.00109435] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00078636 0.00081145 0.00083646 ... 0.00114464 0.00111966 0.00109435] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00052822 0.00055073 0.00057336 ... 0.0007527 0.00073176 0.00071071] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00052822 0.00055073 0.00057336 ... 0.0007527 0.00073176 0.00071071] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00050125 0.00052326 0.00054541 ... 0.0007236 0.00070292 0.00068214] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00050125 0.00052326 0.00054541 ... 0.0007236 0.00070292 0.00068214] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0004751 0.00049661 0.00051828 ... 0.00069519 0.00067477 0.00065428]] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.0004751 0.00049661 0.00051828 ... 0.00069519 0.00067477 0.00065428]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] INFO stpipe.Ami3Pipeline.ami_analyze:step.py:546 Step ami_analyze done INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw01093007001_03102_00012_nis_a3001_ami.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00013_nis_cal.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00013_nis_cal.fits INFO stpipe.Ami3Pipeline.ami_analyze:step.py:430 Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00013_nis_cal.fits',). INFO stpipe.Ami3Pipeline.ami_analyze:step.py:434 Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:45 Oversampling factor = 3 INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:46 Initial rotation guess = 0.0 deg INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:47 Initial values to use for psf offset = [0.0, 0.0] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:61 Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits INFO stpipe.Ami3Pipeline.ami_analyze:utils.py:1173 Applying median filter for 0 NaN and 12 DO_NOT_USE pixels INFO stpipe.Ami3Pipeline.ami_analyze:utils.py:1173 Applying median filter for 0 NaN and 12 DO_NOT_USE pixels INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.52443384e+08-1.23971551e-10j 3.57749096e+08+1.79091246e-09j 3.45395851e+08-7.98331278e-09j ... 3.87787703e+08+1.89986117e-09j 3.78344271e+08-6.88526871e-09j 3.55450809e+08-3.54023831e-08j] [3.86065947e+08+1.38464725e-08j 3.69006212e+08+1.75243404e-09j 3.52729122e+08+8.23801616e-09j ... 3.89901951e+08+1.69018486e-09j 3.98939252e+08-7.31778544e-09j 3.97349414e+08-2.48478231e-08j] [4.38622969e+08+4.67816047e-09j 3.97819244e+08+5.50165084e-09j 3.68175689e+08+1.07158983e-08j ... 3.83100381e+08+1.24502498e-09j 4.16086510e+08+5.62937838e-09j 4.47098163e+08-2.17235828e-08j] ... [2.85377809e+08-8.91330083e-09j 2.87591628e+08-6.30067288e-09j 2.89024900e+08+6.57242945e-09j ... 2.79480481e+08+1.97189817e-09j 2.78869343e+08-3.16050714e-08j 2.85238255e+08-4.14021605e-08j] [3.07109958e+08+1.18776289e-08j 3.02246651e+08-9.09216006e-09j 3.00698402e+08+7.74063920e-09j ... 3.04347563e+08+6.12143410e-09j 3.07321598e+08-5.26839562e-09j 3.08018937e+08-4.22399599e-08j] [3.33925695e+08+4.01464783e-09j 3.33647337e+08-3.26861116e-09j 3.21643891e+08-7.50202275e-10j ... 3.52254416e+08+1.28762608e-09j 3.49271337e+08-2.06515274e-08j 3.34345254e+08-3.83481847e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.52443384e+08-1.23971551e-10j 3.57749096e+08+1.79091246e-09j 3.45395851e+08-7.98331278e-09j ... 3.87787703e+08+1.89986117e-09j 3.78344271e+08-6.88526871e-09j 3.55450809e+08-3.54023831e-08j] [3.86065947e+08+1.38464725e-08j 3.69006212e+08+1.75243404e-09j 3.52729122e+08+8.23801616e-09j ... 3.89901951e+08+1.69018486e-09j 3.98939252e+08-7.31778544e-09j 3.97349414e+08-2.48478231e-08j] [4.38622969e+08+4.67816047e-09j 3.97819244e+08+5.50165084e-09j 3.68175689e+08+1.07158983e-08j ... 3.83100381e+08+1.24502498e-09j 4.16086510e+08+5.62937838e-09j 4.47098163e+08-2.17235828e-08j] ... [2.85377809e+08-8.91330083e-09j 2.87591628e+08-6.30067288e-09j 2.89024900e+08+6.57242945e-09j ... 2.79480481e+08+1.97189817e-09j 2.78869343e+08-3.16050714e-08j 2.85238255e+08-4.14021605e-08j] [3.07109958e+08+1.18776289e-08j 3.02246651e+08-9.09216006e-09j 3.00698402e+08+7.74063920e-09j ... 3.04347563e+08+6.12143410e-09j 3.07321598e+08-5.26839562e-09j 3.08018937e+08-4.22399599e-08j] [3.33925695e+08+4.01464783e-09j 3.33647337e+08-3.26861116e-09j 3.21643891e+08-7.50202275e-10j ... 3.52254416e+08+1.28762608e-09j 3.49271337e+08-2.06515274e-08j 3.34345254e+08-3.83481847e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301254446533.8239+1.6940658945086007e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301254446533.8239+1.6940658945086007e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301254435014.8639: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301254435014.8639: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301254446533.8239: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301254446533.8239: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633527: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633527: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.51860312e+08+1.86760693e-09j 3.57953299e+08+3.60738995e-09j 3.45951694e+08-3.88346145e-09j ... 3.88650446e+08+5.70980006e-09j 3.80029769e+08-6.38558539e-09j 3.55746059e+08+2.53124621e-08j] [3.85880086e+08+1.28291741e-09j 3.69344847e+08+3.24652743e-09j 3.53761988e+08-4.09822936e-09j ... 3.88914043e+08+4.68682246e-09j 3.99059859e+08-8.86146039e-09j 3.97624146e+08+1.34489288e-08j] [4.39711589e+08-3.08004424e-09j 3.98105804e+08+6.99071024e-09j 3.67950503e+08+2.44662167e-09j ... 3.81707806e+08-1.42063840e-09j 4.15164005e+08-5.07591302e-09j 4.47760442e+08+8.57775956e-09j] ... [2.85606519e+08-1.18828066e-08j 2.87579075e+08+1.39115824e-09j 2.88477605e+08-1.87144754e-09j ... 2.80339348e+08+1.14745203e-08j 2.78242915e+08-8.42024044e-09j 2.84884831e+08+1.51233886e-08j] [3.07281095e+08-9.54100162e-09j 3.01588126e+08+6.74514872e-10j 2.99103159e+08-1.33620543e-09j ... 3.04345397e+08+6.09837135e-09j 3.06778002e+08+2.60178965e-09j 3.07568101e+08+1.90537968e-08j] [3.33766412e+08+9.44914188e-09j 3.33209981e+08+6.32021603e-09j 3.20588651e+08-6.06537523e-09j ... 3.53051689e+08+8.42000301e-09j 3.50476099e+08+8.51343341e-09j 3.34501737e+08+1.32029177e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.51860312e+08+1.86760693e-09j 3.57953299e+08+3.60738995e-09j 3.45951694e+08-3.88346145e-09j ... 3.88650446e+08+5.70980006e-09j 3.80029769e+08-6.38558539e-09j 3.55746059e+08+2.53124621e-08j] [3.85880086e+08+1.28291741e-09j 3.69344847e+08+3.24652743e-09j 3.53761988e+08-4.09822936e-09j ... 3.88914043e+08+4.68682246e-09j 3.99059859e+08-8.86146039e-09j 3.97624146e+08+1.34489288e-08j] [4.39711589e+08-3.08004424e-09j 3.98105804e+08+6.99071024e-09j 3.67950503e+08+2.44662167e-09j ... 3.81707806e+08-1.42063840e-09j 4.15164005e+08-5.07591302e-09j 4.47760442e+08+8.57775956e-09j] ... [2.85606519e+08-1.18828066e-08j 2.87579075e+08+1.39115824e-09j 2.88477605e+08-1.87144754e-09j ... 2.80339348e+08+1.14745203e-08j 2.78242915e+08-8.42024044e-09j 2.84884831e+08+1.51233886e-08j] [3.07281095e+08-9.54100162e-09j 3.01588126e+08+6.74514872e-10j 2.99103159e+08-1.33620543e-09j ... 3.04345397e+08+6.09837135e-09j 3.06778002e+08+2.60178965e-09j 3.07568101e+08+1.90537968e-08j] [3.33766412e+08+9.44914188e-09j 3.33209981e+08+6.32021603e-09j 3.20588651e+08-6.06537523e-09j ... 3.53051689e+08+8.42000301e-09j 3.50476099e+08+8.51343341e-09j 3.34501737e+08+1.32029177e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301222895749.1606+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301222895749.1606+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301222884231.40686: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301222884231.40686: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301222895749.1606: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301222895749.1606: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633524: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633524: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.51276685e+08+8.18851349e-10j 3.57865805e+08+1.30129293e-08j 3.46431252e+08+7.61036270e-09j ... 3.89040968e+08-1.25064782e-08j 3.81585184e+08+2.01537401e-08j 3.56341597e+08-7.38359743e-09j] [3.85919702e+08-1.72106736e-09j 3.69611122e+08+1.69858412e-08j 3.54718067e+08+1.63057127e-08j ... 3.87905369e+08-1.30618338e-08j 3.99144249e+08+1.95796182e-08j 3.98132911e+08-6.94187536e-09j] [4.40683156e+08+8.18851349e-10j 3.98460151e+08+2.14530401e-08j 3.67840113e+08+2.32536716e-08j ... 3.80365477e+08-1.04328303e-08j 4.13990652e+08+2.23365274e-08j 4.48078673e+08-1.52416317e-08j] ... [2.85719738e+08+6.43489919e-09j 2.87626535e+08+1.54217791e-08j 2.87993132e+08+1.38338096e-08j ... 2.81369388e+08-2.35594698e-08j 2.78044650e+08-4.09825216e-10j 2.84443722e+08-3.64054663e-09j] [3.07446848e+08+1.36307599e-08j 3.01451423e+08+1.76744236e-08j 2.97754961e+08+1.46892283e-08j ... 3.04404387e+08-4.15332153e-08j 3.06594631e+08+1.85687102e-08j 3.07116730e+08-2.62184779e-08j] [3.33446499e+08+2.49957606e-08j 3.32918438e+08+6.03950989e-09j 3.19750644e+08+1.94144183e-08j ... 3.53446565e+08-1.55861593e-08j 3.51607550e+08+2.41460434e-08j 3.34678977e+08-1.59255343e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.51276685e+08+8.18851349e-10j 3.57865805e+08+1.30129293e-08j 3.46431252e+08+7.61036270e-09j ... 3.89040968e+08-1.25064782e-08j 3.81585184e+08+2.01537401e-08j 3.56341597e+08-7.38359743e-09j] [3.85919702e+08-1.72106736e-09j 3.69611122e+08+1.69858412e-08j 3.54718067e+08+1.63057127e-08j ... 3.87905369e+08-1.30618338e-08j 3.99144249e+08+1.95796182e-08j 3.98132911e+08-6.94187536e-09j] [4.40683156e+08+8.18851349e-10j 3.98460151e+08+2.14530401e-08j 3.67840113e+08+2.32536716e-08j ... 3.80365477e+08-1.04328303e-08j 4.13990652e+08+2.23365274e-08j 4.48078673e+08-1.52416317e-08j] ... [2.85719738e+08+6.43489919e-09j 2.87626535e+08+1.54217791e-08j 2.87993132e+08+1.38338096e-08j ... 2.81369388e+08-2.35594698e-08j 2.78044650e+08-4.09825216e-10j 2.84443722e+08-3.64054663e-09j] [3.07446848e+08+1.36307599e-08j 3.01451423e+08+1.76744236e-08j 2.97754961e+08+1.46892283e-08j ... 3.04404387e+08-4.15332153e-08j 3.06594631e+08+1.85687102e-08j 3.07116730e+08-2.62184779e-08j] [3.33446499e+08+2.49957606e-08j 3.32918438e+08+6.03950989e-09j 3.19750644e+08+1.94144183e-08j ... 3.53446565e+08-1.55861593e-08j 3.51607550e+08+2.41460434e-08j 3.34678977e+08-1.59255343e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301202923958.4581-3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301202923958.4581-3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301202912441.46814: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301202912441.46814: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301202923958.4581: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301202923958.4581: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633526: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633526: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.50731453e+08+3.98237312e-10j 3.57477835e+08+1.97707704e-09j 3.46796199e+08+1.28191175e-08j ... 3.88958828e+08+1.47212398e-08j 3.82955462e+08-5.51992025e-09j 3.57231873e+08+6.70838815e-09j] [3.86182782e+08+1.08067742e-08j 3.69835226e+08+2.38482277e-09j 3.55584828e+08+2.22073792e-08j ... 3.86903889e+08+7.19743606e-09j 3.99238309e+08+6.99686679e-09j 3.98894077e+08+1.53635126e-08j] [4.41443458e+08+1.27135223e-09j 3.98897517e+08+2.66829302e-09j 3.67914661e+08+1.75484899e-08j ... 3.79068099e+08+1.69404069e-08j 4.12605403e+08-8.28478414e-09j 4.48032619e+08+2.00961502e-08j] ... [2.85674849e+08-1.22589147e-08j 2.87639862e+08-4.97784757e-10j 2.87566162e+08+1.27101921e-08j ... 2.82423901e+08-1.67530105e-08j 2.78299943e+08-1.08417754e-08j 2.84004676e+08+8.91363013e-09j] [3.07594980e+08+1.88913103e-09j 3.01761153e+08-3.15180221e-09j 2.96766858e+08+2.40662500e-08j ... 3.04482772e+08+4.66509585e-09j 3.06746667e+08-7.30880289e-09j 3.06752123e+08+4.69517943e-09j] [3.32993924e+08-3.48582675e-09j 3.32737490e+08+5.07459584e-09j 3.19194342e+08+1.79642495e-08j ... 3.53415801e+08+1.13905626e-08j 3.52561545e+08-7.81597997e-09j 3.34884655e+08+7.39490429e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.50731453e+08+3.98237312e-10j 3.57477835e+08+1.97707704e-09j 3.46796199e+08+1.28191175e-08j ... 3.88958828e+08+1.47212398e-08j 3.82955462e+08-5.51992025e-09j 3.57231873e+08+6.70838815e-09j] [3.86182782e+08+1.08067742e-08j 3.69835226e+08+2.38482277e-09j 3.55584828e+08+2.22073792e-08j ... 3.86903889e+08+7.19743606e-09j 3.99238309e+08+6.99686679e-09j 3.98894077e+08+1.53635126e-08j] [4.41443458e+08+1.27135223e-09j 3.98897517e+08+2.66829302e-09j 3.67914661e+08+1.75484899e-08j ... 3.79068099e+08+1.69404069e-08j 4.12605403e+08-8.28478414e-09j 4.48032619e+08+2.00961502e-08j] ... [2.85674849e+08-1.22589147e-08j 2.87639862e+08-4.97784757e-10j 2.87566162e+08+1.27101921e-08j ... 2.82423901e+08-1.67530105e-08j 2.78299943e+08-1.08417754e-08j 2.84004676e+08+8.91363013e-09j] [3.07594980e+08+1.88913103e-09j 3.01761153e+08-3.15180221e-09j 2.96766858e+08+2.40662500e-08j ... 3.04482772e+08+4.66509585e-09j 3.06746667e+08-7.30880289e-09j 3.06752123e+08+4.69517943e-09j] [3.32993924e+08-3.48582675e-09j 3.32737490e+08+5.07459584e-09j 3.19194342e+08+1.79642495e-08j ... 3.53415801e+08+1.13905626e-08j 3.52561545e+08-7.81597997e-09j 3.34884655e+08+7.39490429e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301196808332.2004-3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301196808332.2004-3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301196796815.4442: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301196796815.4442: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301196808332.2004: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301196808332.2004: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633526: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633526: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.50253989e+08+9.96077243e-09j 3.56820992e+08+4.95685421e-09j 3.47033229e+08+2.52013366e-09j ... 3.88439651e+08-1.40985496e-08j 3.84100547e+08-8.18197739e-09j 3.58376170e+08+2.06829394e-09j] [3.86641078e+08+1.11976693e-08j 3.70034815e+08+1.29093027e-08j 3.56379797e+08+6.95796578e-10j ... 3.85921420e+08-1.17917601e-08j 3.99364321e+08-1.88068182e-08j 3.99908345e+08+5.11942609e-09j] [4.41943447e+08+1.98560748e-08j 3.99396495e+08+1.52523342e-08j 3.68212232e+08-3.59167074e-09j ... 3.77815312e+08-1.51717534e-08j 4.11052418e+08-1.92414330e-08j 4.47662830e+08+1.15270388e-08j] ... [2.85461703e+08+5.19885975e-09j 2.87527724e+08+8.72948262e-09j 2.87178067e+08+4.08372950e-09j ... 2.83374794e+08-1.82405764e-08j 2.78979853e+08-5.89826641e-09j 2.83657978e+08+6.62882694e-09j] [3.07734066e+08+1.11645332e-08j 3.02406359e+08+1.86149555e-08j 2.96192343e+08-5.15237852e-09j ... 3.04551612e+08-1.57842554e-08j 3.07178997e+08-2.90806461e-08j 3.06537677e+08-2.56054342e-09j] [3.32462184e+08+1.02024238e-08j 3.32640166e+08+1.20261556e-08j 3.18938014e+08-4.81937259e-09j ... 3.52982398e+08-2.27764435e-08j 3.53265897e+08-1.79835256e-08j 3.35113953e+08+1.24291478e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.50253989e+08+9.96077243e-09j 3.56820992e+08+4.95685421e-09j 3.47033229e+08+2.52013366e-09j ... 3.88439651e+08-1.40985496e-08j 3.84100547e+08-8.18197739e-09j 3.58376170e+08+2.06829394e-09j] [3.86641078e+08+1.11976693e-08j 3.70034815e+08+1.29093027e-08j 3.56379797e+08+6.95796578e-10j ... 3.85921420e+08-1.17917601e-08j 3.99364321e+08-1.88068182e-08j 3.99908345e+08+5.11942609e-09j] [4.41943447e+08+1.98560748e-08j 3.99396495e+08+1.52523342e-08j 3.68212232e+08-3.59167074e-09j ... 3.77815312e+08-1.51717534e-08j 4.11052418e+08-1.92414330e-08j 4.47662830e+08+1.15270388e-08j] ... [2.85461703e+08+5.19885975e-09j 2.87527724e+08+8.72948262e-09j 2.87178067e+08+4.08372950e-09j ... 2.83374794e+08-1.82405764e-08j 2.78979853e+08-5.89826641e-09j 2.83657978e+08+6.62882694e-09j] [3.07734066e+08+1.11645332e-08j 3.02406359e+08+1.86149555e-08j 2.96192343e+08-5.15237852e-09j ... 3.04551612e+08-1.57842554e-08j 3.07178997e+08-2.90806461e-08j 3.06537677e+08-2.56054342e-09j] [3.32462184e+08+1.02024238e-08j 3.32640166e+08+1.20261556e-08j 3.18938014e+08-4.81937259e-09j ... 3.52982398e+08-2.27764435e-08j 3.53265897e+08-1.79835256e-08j 3.35113953e+08+1.24291478e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301202358266.43616-3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301202358266.43616-3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301202346749.46783: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301202346749.46783: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301202358266.43616: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301202358266.43616: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633527: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633527: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49858861e+08+1.08668287e-08j 3.55957608e+08+3.97862022e-09j 3.47149781e+08-1.59102179e-09j ... 3.87546591e+08+2.51182572e-09j 3.85000755e+08-7.10328964e-09j 3.59708318e+08-2.47408255e-10j] [3.87246532e+08+1.08011125e-08j 3.70207113e+08+1.98934458e-09j 3.57146489e+08+5.25096790e-09j ... 3.84963351e+08-3.12081903e-09j 3.99518744e+08+7.57285532e-10j 4.01159304e+08-2.57812446e-11j] [4.42191718e+08+1.24675394e-08j 3.99904284e+08+8.88989161e-09j 3.68737076e+08+2.77455278e-09j ... 3.76610593e+08-4.03653614e-09j 4.09368597e+08+1.62785949e-09j 4.47060449e+08-1.12052317e-09j] ... [2.85100093e+08+1.94612951e-08j 2.87215552e+08-6.32075212e-09j 2.86792856e+08-2.22704943e-09j ... 2.84128338e+08-1.59903143e-08j 2.80011620e+08-1.60211720e-09j 2.83475720e+08-1.12571898e-08j] [3.07885568e+08+2.04436971e-09j 3.03266664e+08-1.83749010e-09j 2.96022118e+08-2.79782782e-09j ... 3.04593571e+08-1.50489519e-08j 3.07822447e+08-1.30496398e-08j 3.06498647e+08+8.38608892e-10j] [3.31919997e+08+1.01997717e-08j 3.32619464e+08-8.62092267e-09j 3.18953144e+08+6.03940658e-10j ... 3.52201120e+08-6.86265371e-09j 3.53690995e+08-8.97560780e-09j 3.35350835e+08+6.10504684e-10j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49858861e+08+1.08668287e-08j 3.55957608e+08+3.97862022e-09j 3.47149781e+08-1.59102179e-09j ... 3.87546591e+08+2.51182572e-09j 3.85000755e+08-7.10328964e-09j 3.59708318e+08-2.47408255e-10j] [3.87246532e+08+1.08011125e-08j 3.70207113e+08+1.98934458e-09j 3.57146489e+08+5.25096790e-09j ... 3.84963351e+08-3.12081903e-09j 3.99518744e+08+7.57285532e-10j 4.01159304e+08-2.57812446e-11j] [4.42191718e+08+1.24675394e-08j 3.99904284e+08+8.88989161e-09j 3.68737076e+08+2.77455278e-09j ... 3.76610593e+08-4.03653614e-09j 4.09368597e+08+1.62785949e-09j 4.47060449e+08-1.12052317e-09j] ... [2.85100093e+08+1.94612951e-08j 2.87215552e+08-6.32075212e-09j 2.86792856e+08-2.22704943e-09j ... 2.84128338e+08-1.59903143e-08j 2.80011620e+08-1.60211720e-09j 2.83475720e+08-1.12571898e-08j] [3.07885568e+08+2.04436971e-09j 3.03266664e+08-1.83749010e-09j 2.96022118e+08-2.79782782e-09j ... 3.04593571e+08-1.50489519e-08j 3.07822447e+08-1.30496398e-08j 3.06498647e+08+8.38608892e-10j] [3.31919997e+08+1.01997717e-08j 3.32619464e+08-8.62092267e-09j 3.18953144e+08+6.03940658e-10j ... 3.52201120e+08-6.86265371e-09j 3.53690995e+08-8.97560780e-09j 3.35350835e+08+6.10504684e-10j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301217014710.4241+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301217014710.4241+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301217003192.8953: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301217003192.8953: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301217014710.4241: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301217014710.4241: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633527: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633527: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 3.752464 3.9360073 6.8771515 ... -0.28652227 1.956734 0.5575021 ] [-0.76829195 -3.8608959 3.9508274 ... 0.70041853 -0.7738661 -0.17997108] [ 1.1273997 2.6942532 -1.2046589 ... 3.384721 6.4726806 -3.448312 ] ... [ 7.1012034 11.437282 14.529884 ... 22.292 14.062029 7.1004286 ] [11.270448 20.045698 21.545406 ... 20.00571 18.379457 11.763769 ] [11.513245 17.65723 16.206806 ... 9.804518 8.671277 11.264841 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20442.58515666 +0.j -15844.60895569-2052.81197351j 9578.36259253+2392.08523104j ... -4229.13729651+1643.32632329j 9578.36259253-2392.08523104j -15844.60895569+2052.81197351j] [-14740.17790807+6410.57258753j 12898.35192304-3798.88915475j -8553.21122058+1421.03755373j ... 2948.25260986-2988.33843837j -6919.39272881+5285.51179378j 11572.41434814-6850.23252127j] [ 6725.01469906-7211.49928237j -6574.24254782+5470.40734794j 4697.56336529-3054.26276142j ... -875.22160642+2535.16241317j 2713.23867491-4895.02409737j -5043.05701437+6879.06656366j] ... [ -1719.27720039-4851.33048894j 853.03620379+3833.60891581j -158.16965885-2199.90253704j ... 652.21113865 +702.49755913j -1226.25909702-1832.17791284j 1762.99633364+3514.69422169j] [ 6725.01469906+7211.49928237j -5043.05701437-6879.06656366j 2713.23867491+4895.02409737j ... -2428.07938804-1138.15401666j 4697.56336529+3054.26276142j -6574.24254782-5470.40734794j] [-14740.17790807-6410.57258753j 11572.41434814+6850.23252127j -6919.39272881-5285.51179378j ... 4245.14288004 +163.41373286j -8553.21122058-1421.03755373j 12898.35192304+3798.88915475j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49543983e+08-1.82669785e-08j 3.54967544e+08+4.73525292e-10j 3.47170652e+08-8.58055607e-09j ... 3.86368608e+08-1.18228748e-08j 3.85662899e+08+1.07595053e-08j 3.61149533e+08+9.75641748e-09j] [3.87939661e+08-1.28814048e-08j 3.70329344e+08+5.45117513e-10j 3.57947311e+08-1.17120985e-08j ... 3.84030357e+08-1.00018359e-08j 3.99669694e+08+1.59941821e-08j 4.02612602e+08+1.17437352e-09j] [4.42256487e+08-4.87921644e-09j 4.00349234e+08+4.98461901e-09j 3.69462490e+08-7.12536454e-09j ... 3.75459912e+08-1.16773556e-08j 4.07576397e+08+1.16326202e-08j 4.46351851e+08+7.86466850e-09j] ... [2.84632512e+08-3.92964572e-09j 2.86659372e+08-1.08063659e-08j 2.86363565e+08-7.06803162e-09j ... 2.84625486e+08-8.04297936e-09j 2.81294365e+08+7.29627453e-09j 2.83500966e+08-9.95240004e-10j] [3.08076239e+08-4.32823613e-09j 3.04234601e+08+5.41346873e-09j 2.96192751e+08-6.10605962e-09j ... 3.04592148e+08-1.01659422e-08j 3.08600412e+08+9.75619022e-09j 3.06619545e+08-1.39300620e-09j] [3.31438742e+08-5.11333872e-09j 3.32688604e+08+8.11239540e-10j 3.19172705e+08-1.10892551e-08j ... 3.51146474e+08-2.33094492e-08j 3.53852130e+08+7.85013195e-10j 3.35574026e+08+3.10440731e-10j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49543983e+08-1.82669785e-08j 3.54967544e+08+4.73525292e-10j 3.47170652e+08-8.58055607e-09j ... 3.86368608e+08-1.18228748e-08j 3.85662899e+08+1.07595053e-08j 3.61149533e+08+9.75641748e-09j] [3.87939661e+08-1.28814048e-08j 3.70329344e+08+5.45117513e-10j 3.57947311e+08-1.17120985e-08j ... 3.84030357e+08-1.00018359e-08j 3.99669694e+08+1.59941821e-08j 4.02612602e+08+1.17437352e-09j] [4.42256487e+08-4.87921644e-09j 4.00349234e+08+4.98461901e-09j 3.69462490e+08-7.12536454e-09j ... 3.75459912e+08-1.16773556e-08j 4.07576397e+08+1.16326202e-08j 4.46351851e+08+7.86466850e-09j] ... [2.84632512e+08-3.92964572e-09j 2.86659372e+08-1.08063659e-08j 2.86363565e+08-7.06803162e-09j ... 2.84625486e+08-8.04297936e-09j 2.81294365e+08+7.29627453e-09j 2.83500966e+08-9.95240004e-10j] [3.08076239e+08-4.32823613e-09j 3.04234601e+08+5.41346873e-09j 2.96192751e+08-6.10605962e-09j ... 3.04592148e+08-1.01659422e-08j 3.08600412e+08+9.75619022e-09j 3.06619545e+08-1.39300620e-09j] [3.31438742e+08-5.11333872e-09j 3.32688604e+08+8.11239540e-10j 3.19172705e+08-1.10892551e-08j ... 3.51146474e+08-2.33094492e-08j 3.53852130e+08+7.85013195e-10j 3.35574026e+08+3.10440731e-10j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1635406.8: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301247114342.29285+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (301247114342.29285+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301247102823.61316: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 301247102823.61316: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301247114342.29285: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 301247114342.29285: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633526: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 0.9999999617633526: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=45, peaky=38, distance to edge=34 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=45, peaky=38, distance to edge=34 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.42767901134667163, 0.2212406930662929) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.42767901134667163, 0.2212406930662929) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00012275 0.00013495 0.00014762 ... 0.0002949 0.00027788 0.00026118] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[0.00012275 0.00013495 0.00014762 ... 0.0002949 0.00027788 0.00026118] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00013492 0.0001477 0.00016094 ... 0.00031466 0.00029711 0.00027986] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00013492 0.0001477 0.00016094 ... 0.00031466 0.00029711 0.00027986] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00014778 0.00016114 0.00017494 ... 0.00033518 0.0003171 0.00029931] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00014778 0.00016114 0.00017494 ... 0.00033518 0.0003171 0.00029931] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00022861 0.00024575 0.00026334 ... 0.00042487 0.0004056 0.00038652] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00022861 0.00024575 0.00026334 ... 0.00042487 0.0004056 0.00038652] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00021097 0.00022746 0.0002444 ... 0.00040252 0.00038371 0.00036511] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00021097 0.00022746 0.0002444 ... 0.00040252 0.00038371 0.00036511] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00019413 0.00020997 0.00022628 ... 0.0003809 0.00036255 0.00034442]] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [0.00019413 0.00020997 0.00022628 ... 0.0003809 0.00036255 0.00034442]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] INFO stpipe.Ami3Pipeline.ami_analyze:step.py:546 Step ami_analyze done INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw01093007001_03102_00013_nis_a3001_ami.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00014_nis_cal.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:82 Do LG processing for member /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00014_nis_cal.fits INFO stpipe.Ami3Pipeline.ami_analyze:step.py:430 Step ami_analyze running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0/jw01093007001_03102_00014_nis_cal.fits',). INFO stpipe.Ami3Pipeline.ami_analyze:step.py:434 Step ami_analyze parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'ami_analyze', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0', 'oversample': 3, 'rotation': 0.0, 'psf_offset': '0.0 0.0', 'rotation_search': '-3 3 1'} INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:45 Oversampling factor = 3 INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:46 Initial rotation guess = 0.0 deg INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:47 Initial values to use for psf offset = [0.0, 0.0] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze_step.py:61 Using filter throughput reference file /grp/crds/cache/references/jwst/jwst_niriss_throughput_0008.fits INFO stpipe.Ami3Pipeline.ami_analyze:utils.py:1173 Applying median filter for 0 NaN and 12 DO_NOT_USE pixels INFO stpipe.Ami3Pipeline.ami_analyze:utils.py:1173 Applying median filter for 0 NaN and 12 DO_NOT_USE pixels INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] INFO stpipe.Ami3Pipeline.ami_analyze:ami_analyze.py:92 Initial values to use for rotation search [-3. -2. -1. 0. 1. 2. 3.] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.1392447 1.13728569 1.27836883 ... 0.50407902 1.15121119 0.83449738] [0.13486296 0.81281483 1.06612868 ... 1.0650712 1.81606872 1.03697629] [0.37345677 0.17964694 0.25635471 ... 0.54746115 0.78227656 0.68929897] ... [0.68929897 0.78227656 0.54746115 ... 0.25635471 0.17964694 0.37345677] [1.03697629 1.81606872 1.0650712 ... 1.06612868 0.81281483 0.13486296] [0.83449738 1.15121119 0.50407902 ... 1.27836883 1.13728569 0.1392447 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.59563114+0.00000000e+00j -1861.63628452-7.31438896e+01j 1274.64845433+1.00317010e+02j ... -713.58041556+8.44578101e+01j 1274.64845433-1.00317010e+02j -1861.63628452+7.31438896e+01j] [-1874.81611109-7.36617264e+01j 1619.04057769+1.27421258e+02j -1129.05663727-1.33632662e+02j ... 663.27265519-5.22006916e+01j -1139.04028253+4.47530153e+01j 1621.36142151+0.00000000e+00j] [ 1249.06066178+9.83032075e+01j -1138.62043235-1.34764611e+02j 805.41960278+1.27565936e+02j ... -514.06002543+2.01974742e+01j 819.38476236-1.13686838e-14j -1148.78277169-4.51357988e+01j] ... [ -765.81056584+9.06396558e+01j 642.80688168-5.05900003e+01j -443.83249768+1.74382271e+01j ... 224.86998258-5.39865110e+01j -426.52305506+8.48407144e+01j 652.6206109 -1.03364953e+02j] [ 1249.06066178-9.83032075e+01j -1148.78277169+4.51357988e+01j 819.38476236+1.13686838e-14j ... -491.09469073+9.76848113e+01j 805.41960278-1.27565936e+02j -1138.62043235+1.34764611e+02j] [-1874.81611109+7.36617264e+01j 1621.36142151-1.42108547e-14j -1139.04028253-4.47530153e+01j ... 674.51827717-1.06833203e+02j -1129.05663727+1.33632662e+02j 1619.04057769-1.27421258e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.50514586e+08+8.73953110e-10j 3.57015912e+08-1.23522673e-08j 3.51097886e+08-5.00430364e-09j ... 3.83733651e+08-1.06542922e-08j 3.84445365e+08-8.18829542e-09j 3.60975690e+08+5.25391713e-09j] [3.89850429e+08+5.31067683e-09j 3.74067430e+08-1.21386720e-08j 3.57709787e+08+9.54456716e-09j ... 3.84831071e+08-1.18117776e-08j 3.97141136e+08-1.11819903e-10j 3.97963616e+08+1.16603244e-08j] [4.46151781e+08-1.59987248e-09j 4.10893763e+08-8.27773102e-09j 3.74660639e+08-7.04157177e-09j ... 3.75788786e+08-1.50198667e-08j 4.04150321e+08-1.19717934e-08j 4.39505208e+08+1.17295194e-08j] ... [2.85274834e+08+6.99203063e-09j 2.86073650e+08-6.59890523e-09j 2.88923881e+08-3.61165608e-09j ... 2.82256811e+08-1.44498484e-08j 2.76887813e+08-1.38822056e-08j 2.83420618e+08+2.00050934e-09j] [3.07477046e+08+8.98525426e-09j 3.03613532e+08-2.21541610e-08j 2.99441030e+08-1.31185638e-08j ... 3.02030479e+08-1.69343334e-08j 3.06067642e+08-1.63081644e-08j 3.07347742e+08+1.75157486e-08j] [3.32346520e+08+3.64804910e-09j 3.34868780e+08-1.99731541e-09j 3.25097641e+08+9.92357992e-10j ... 3.46643380e+08-1.10781345e-08j 3.52529734e+08-8.35543676e-09j 3.37613751e+08+4.86290622e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.50514586e+08+8.73953110e-10j 3.57015912e+08-1.23522673e-08j 3.51097886e+08-5.00430364e-09j ... 3.83733651e+08-1.06542922e-08j 3.84445365e+08-8.18829542e-09j 3.60975690e+08+5.25391713e-09j] [3.89850429e+08+5.31067683e-09j 3.74067430e+08-1.21386720e-08j 3.57709787e+08+9.54456716e-09j ... 3.84831071e+08-1.18117776e-08j 3.97141136e+08-1.11819903e-10j 3.97963616e+08+1.16603244e-08j] [4.46151781e+08-1.59987248e-09j 4.10893763e+08-8.27773102e-09j 3.74660639e+08-7.04157177e-09j ... 3.75788786e+08-1.50198667e-08j 4.04150321e+08-1.19717934e-08j 4.39505208e+08+1.17295194e-08j] ... [2.85274834e+08+6.99203063e-09j 2.86073650e+08-6.59890523e-09j 2.88923881e+08-3.61165608e-09j ... 2.82256811e+08-1.44498484e-08j 2.76887813e+08-1.38822056e-08j 2.83420618e+08+2.00050934e-09j] [3.07477046e+08+8.98525426e-09j 3.03613532e+08-2.21541610e-08j 2.99441030e+08-1.31185638e-08j ... 3.02030479e+08-1.69343334e-08j 3.06067642e+08-1.63081644e-08j 3.07347742e+08+1.75157486e-08j] [3.32346520e+08+3.64804910e-09j 3.34868780e+08-1.99731541e-09j 3.25097641e+08+9.92357992e-10j ... 3.46643380e+08-1.10781345e-08j 3.52529734e+08-8.35543676e-09j 3.37613751e+08+4.86290622e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184207.65049114777: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300461443539.72546-8.470329472543003e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300461443539.72546-8.470329472543003e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300461467131.4121: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300461467131.4121: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300461443539.72546: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300461443539.72546: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.57140173 0.26045135 1.36790321 ... 0.2830422 0.24752881 0.32062626] [0.88449094 0.12564027 0.43807974 ... 0.24292185 1.1100017 1.55492411] [0.7628994 0.4463301 0.22423443 ... 0.52490764 1.26325814 1.47956987] ... [1.47956987 1.26325814 0.52490764 ... 0.22423443 0.4463301 0.7628994 ] [1.55492411 1.1100017 0.24292185 ... 0.43807974 0.12564027 0.88449094] [0.32062626 0.24752881 0.2830422 ... 1.36790321 0.26045135 0.57140173]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.35447719+0.00000000e+00j -1861.58878021-7.31420231e+01j 1274.88868336+1.00335917e+02j ... -713.00001172+8.43891148e+01j 1274.88868336-1.00335917e+02j -1861.58878021+7.31420231e+01j] [-1875.08503595-7.36722925e+01j 1618.62384515+1.27388461e+02j -1129.37091448-1.33669859e+02j ... 666.42392131-5.24487016e+01j -1138.38537 +4.47272838e+01j 1621.81892011+2.84217094e-15j] [ 1248.47402382+9.82570381e+01j -1139.38516668-1.34855124e+02j 805.90406249+1.27642667e+02j ... -513.08817318+2.01592900e+01j 818.58177814+0.00000000e+00j -1148.54575515-4.51264864e+01j] ... [ -766.82910541+9.07602079e+01j 644.92763407-5.07569071e+01j -441.60360584+1.73506537e+01j ... 227.35952807-5.45841980e+01j -427.36944557+8.50090720e+01j 649.54752507-1.02878224e+02j] [ 1248.47402382-9.82570381e+01j -1148.54575515+4.51264864e+01j 818.58177814+2.13162821e-14j ... -494.5052764 +9.83632190e+01j 805.90406249-1.27642667e+02j -1139.38516668+1.34855124e+02j] [-1875.08503595+7.36722925e+01j 1621.81892011-5.96855898e-14j -1138.38537 -4.47272838e+01j ... 671.97059683-1.06429690e+02j -1129.37091448+1.33669859e+02j 1618.62384515-1.27388461e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49974970e+08+2.99021250e-10j 3.56887994e+08+6.22362140e-09j 3.51654761e+08+2.28370038e-08j ... 3.84064442e+08-2.31568588e-09j 3.86148960e+08-8.07918718e-09j 3.61860424e+08+1.65227915e-08j] [3.89739655e+08-1.30305238e-09j 3.74121549e+08+9.62700124e-09j 3.58652993e+08+1.41831195e-08j ... 3.83639291e+08+3.72021478e-09j 3.96946104e+08-8.07991380e-09j 3.98352975e+08+1.66668130e-08j] [4.47290948e+08+3.50044260e-09j 4.11453731e+08+5.27774691e-09j 3.74563503e+08+8.72164605e-09j ... 3.74615496e+08-2.53396461e-09j 4.02873350e+08+6.51961953e-10j 4.39685256e+08+1.38306872e-08j] ... [2.85435329e+08+1.46181151e-09j 2.86185490e+08-7.53028470e-09j 2.88608582e+08+1.49618794e-08j ... 2.83447538e+08-1.77377697e-08j 2.76623110e+08-2.24686629e-08j 2.82799746e+08+1.51730930e-08j] [3.07562030e+08-1.15554132e-08j 3.03413102e+08-4.77624836e-09j 2.97972365e+08+1.05190399e-08j ... 3.01916895e+08+5.01376706e-09j 3.05722036e+08-6.24631002e-09j 3.06691732e+08+5.36828342e-10j] [3.32186692e+08+6.33764278e-09j 3.34613350e+08+1.04686178e-08j 3.24124563e+08+1.51933750e-08j ... 3.46877713e+08-1.05591261e-08j 3.53851357e+08-8.76217187e-09j 3.38092069e+08+1.82554290e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49974970e+08+2.99021250e-10j 3.56887994e+08+6.22362140e-09j 3.51654761e+08+2.28370038e-08j ... 3.84064442e+08-2.31568588e-09j 3.86148960e+08-8.07918718e-09j 3.61860424e+08+1.65227915e-08j] [3.89739655e+08-1.30305238e-09j 3.74121549e+08+9.62700124e-09j 3.58652993e+08+1.41831195e-08j ... 3.83639291e+08+3.72021478e-09j 3.96946104e+08-8.07991380e-09j 3.98352975e+08+1.66668130e-08j] [4.47290948e+08+3.50044260e-09j 4.11453731e+08+5.27774691e-09j 3.74563503e+08+8.72164605e-09j ... 3.74615496e+08-2.53396461e-09j 4.02873350e+08+6.51961953e-10j 4.39685256e+08+1.38306872e-08j] ... [2.85435329e+08+1.46181151e-09j 2.86185490e+08-7.53028470e-09j 2.88608582e+08+1.49618794e-08j ... 2.83447538e+08-1.77377697e-08j 2.76623110e+08-2.24686629e-08j 2.82799746e+08+1.51730930e-08j] [3.07562030e+08-1.15554132e-08j 3.03413102e+08-4.77624836e-09j 2.97972365e+08+1.05190399e-08j ... 3.01916895e+08+5.01376706e-09j 3.05722036e+08-6.24631002e-09j 3.06691732e+08+5.36828342e-10j] [3.32186692e+08+6.33764278e-09j 3.34613350e+08+1.04686178e-08j 3.24124563e+08+1.51933750e-08j ... 3.46877713e+08-1.05591261e-08j 3.53851357e+08-8.76217187e-09j 3.38092069e+08+1.82554290e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184188.35817536333: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300429975807.3357-3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300429975807.3357-3.3881317890172014e-21j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300429999396.5515: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300429999396.5515: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300429975807.3357: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300429975807.3357: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.13319958 0.45196876 0.26147226 ... 0.61710928 0.86201598 0.29149257] [1.07160961 0.69465703 0.22547165 ... 0.09474871 0.19083094 0.53361587] [0.29672768 0.41545868 0.5004333 ... 0.16324661 0.64584709 1.67128325] ... [1.67128325 0.64584709 0.16324661 ... 0.5004333 0.41545868 0.29672768] [0.53361587 0.19083094 0.09474871 ... 0.22547165 0.69465703 1.07160961] [0.29149257 0.86201598 0.61710928 ... 0.26147226 0.45196876 1.13319958]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.20182564+0.00000000e+00j -1861.56040137-7.31409081e+01j 1275.04001335+1.00347827e+02j ... -712.64525679+8.43471268e+01j 1275.04001335-1.00347827e+02j -1861.56040137+7.31409081e+01j] [-1875.24599288-7.36786165e+01j 1618.19600665+1.27354789e+02j -1129.75003071-1.33714730e+02j ... 669.54714148-5.26945043e+01j -1137.77001224+4.47031063e+01j 1622.28826313-1.42108547e-14j] [ 1248.10401822+9.82279180e+01j -1140.06934325-1.34936101e+02j 806.45599087+1.27730084e+02j ... -511.55341908+2.00989893e+01j 817.82773265-4.12114787e-14j -1148.19715361-4.51127898e+01j] ... [ -767.48832935+9.08382322e+01j 647.25273834-5.09398968e+01j -439.67600862+1.72749182e+01j ... 230.15647624-5.52556858e+01j -428.51460641+8.52368586e+01j 646.58244915-1.02408602e+02j] [ 1248.10401822-9.82279180e+01j -1148.19715361+4.51127898e+01j 817.82773265+5.40012479e-14j ... -497.51000165+9.89608960e+01j 806.45599087-1.27730084e+02j -1140.06934325+1.34936101e+02j] [-1875.24599288+7.36786165e+01j 1622.28826313-2.84217094e-15j -1137.77001224-4.47031063e+01j ... 669.24785659-1.05998450e+02j -1129.75003071+1.33714730e+02j 1618.19600665-1.27354789e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49582674e+08+1.38002607e-09j 3.56498448e+08+2.10230407e-09j 3.52038308e+08+5.71917475e-09j ... 3.83979010e+08+9.02753075e-09j 3.87534060e+08-3.05910711e-09j 3.62981883e+08+5.12027574e-09j] [3.89914448e+08+1.47929052e-10j 3.74191559e+08+9.62267022e-09j 3.59465082e+08+1.13478135e-09j ... 3.82499440e+08+1.00891844e-08j 3.96666404e+08+9.31643469e-09j 3.98906904e+08+5.26887340e-09j] [4.48226041e+08-2.54899104e-09j 4.12048648e+08+9.12360317e-09j 3.74558808e+08-3.23025311e-09j ... 3.73590710e+08+4.18901893e-09j 4.01431333e+08+2.17958237e-09j 4.39514071e+08+2.50093100e-09j] ... [2.85423325e+08+4.00977047e-10j 2.86314133e+08+1.09240071e-08j 2.88364773e+08-8.15918014e-09j ... 2.84514553e+08+6.64170877e-09j 2.76856242e+08-3.18199340e-09j 2.82233117e+08+1.72022474e-08j] [3.07541368e+08+2.10762183e-09j 3.03593815e+08+1.51132770e-08j 2.96977698e+08-5.12133123e-09j ... 3.01709187e+08+5.13256217e-09j 3.05728958e+08+7.24390847e-10j 3.06176267e+08-6.94491566e-09j] [3.31884773e+08+3.89432650e-09j 3.34373323e+08-1.31587517e-08j 3.23445301e+08+1.09840156e-09j ... 3.46731119e+08-9.46487318e-10j 3.54970876e+08+2.26736007e-09j 3.38629078e+08+1.46377828e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49582674e+08+1.38002607e-09j 3.56498448e+08+2.10230407e-09j 3.52038308e+08+5.71917475e-09j ... 3.83979010e+08+9.02753075e-09j 3.87534060e+08-3.05910711e-09j 3.62981883e+08+5.12027574e-09j] [3.89914448e+08+1.47929052e-10j 3.74191559e+08+9.62267022e-09j 3.59465082e+08+1.13478135e-09j ... 3.82499440e+08+1.00891844e-08j 3.96666404e+08+9.31643469e-09j 3.98906904e+08+5.26887340e-09j] [4.48226041e+08-2.54899104e-09j 4.12048648e+08+9.12360317e-09j 3.74558808e+08-3.23025311e-09j ... 3.73590710e+08+4.18901893e-09j 4.01431333e+08+2.17958237e-09j 4.39514071e+08+2.50093100e-09j] ... [2.85423325e+08+4.00977047e-10j 2.86314133e+08+1.09240071e-08j 2.88364773e+08-8.15918014e-09j ... 2.84514553e+08+6.64170877e-09j 2.76856242e+08-3.18199340e-09j 2.82233117e+08+1.72022474e-08j] [3.07541368e+08+2.10762183e-09j 3.03593815e+08+1.51132770e-08j 2.96977698e+08-5.12133123e-09j ... 3.01709187e+08+5.13256217e-09j 3.05728958e+08+7.24390847e-10j 3.06176267e+08-6.94491566e-09j] [3.31884773e+08+3.89432650e-09j 3.34373323e+08-1.31587517e-08j 3.23445301e+08+1.09840156e-09j ... 3.46731119e+08-9.46487318e-10j 3.54970876e+08+2.26736007e-09j 3.38629078e+08+1.46377828e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184176.1460514139: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300410056589.1015-1.0587911840678754e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300410056589.1015-1.0587911840678754e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300410080176.7533: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300410080176.7533: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300410056589.1015: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300410056589.1015: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.05996989 1.1490689 0.39075562 ... 0.17681401 1.19173335 1.16845642] [0.63242684 0.52781276 0.55456864 ... 0.15366612 0.51888404 0.4281015 ] [0.36505661 0.08214114 0.260832 ... 0.05190936 0.06697403 0.47977782] ... [0.47977782 0.06697403 0.05190936 ... 0.260832 0.08214114 0.36505661] [0.4281015 0.51888404 0.15366612 ... 0.55456864 0.52781276 0.63242684] [1.16845642 1.19173335 0.17681401 ... 0.39075562 1.1490689 1.05996989]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.15508172+0.00000000e+00j -1861.54549383-7.31403224e+01j 1275.09793085+1.00352385e+02j ... -712.52484961+8.43328756e+01j 1275.09793085-1.00352385e+02j -1861.54549383+7.31403224e+01j] [-1875.2942176 -7.36805112e+01j 1617.7555884 +1.27320128e+02j -1130.20462722-1.33768535e+02j ... 672.58653461-5.29337098e+01j -1137.21715493+4.46813845e+01j 1622.75693152-1.13686838e-14j] [ 1247.98017339+9.82181712e+01j -1140.64799811-1.35004589e+02j 807.07940262+1.27828823e+02j ... -509.47558547+2.00173510e+01j 817.13675257+7.10542736e-15j -1147.72656018-4.50943001e+01j] ... [ -767.72743771+9.08665325e+01j 649.80579986-5.11408271e+01j -438.01866337+1.72098009e+01j ... 233.25825088-5.60003560e+01j -429.92345439+8.55170959e+01j 643.79680997-1.01967400e+02j] [ 1247.98017339-9.82181712e+01j -1147.72656018+4.50943001e+01j 817.13675257-9.94759830e-15j ... -500.0568148 +9.94674887e+01j 807.07940262-1.27828823e+02j -1140.64799811+1.35004589e+02j] [-1875.2942176 +7.36805112e+01j 1622.75693152-8.52651283e-15j -1137.21715493-4.46813845e+01j ... 666.3668528 -1.05542144e+02j -1130.20462722+1.33768535e+02j 1617.7555884 -1.27320128e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49375789e+08-7.98655952e-09j 3.55859842e+08+1.04425825e-08j 3.52217434e+08-2.24511438e-09j ... 3.83498579e+08-4.59169736e-09j 3.88552881e+08-6.50135198e-09j 3.64306544e+08+8.11502074e-10j] [3.90369907e+08+5.98572526e-09j 3.74299701e+08+2.42107191e-10j 3.60156880e+08-6.13673470e-09j ... 3.81439265e+08+3.96505143e-09j 3.96345899e+08+1.64991905e-09j 3.99655432e+08+2.26578136e-09j] [4.48868160e+08-1.58371682e-09j 4.12648760e+08+5.02199405e-09j 3.74721154e+08-4.60980060e-09j ... 3.72703094e+08-2.22701114e-09j 3.99853027e+08+1.93875885e-09j 4.39006309e+08+1.53909784e-09j] ... [2.85239664e+08+6.06932735e-09j 2.86367074e+08+1.47901999e-09j 2.88146297e+08-3.31165727e-09j ... 2.85319590e+08-1.71572725e-08j 2.77542463e+08-1.73967426e-09j 2.81823868e+08+6.85751820e-09j] [3.07453246e+08-1.35304937e-08j 3.04064201e+08-3.64562077e-09j 2.96498176e+08-6.12319308e-09j ... 3.01411798e+08-2.25810743e-09j 3.06031120e+08-5.93938553e-10j 3.05871747e+08+5.04006876e-09j] [3.31486818e+08-3.05967493e-09j 3.34116555e+08+1.01763925e-09j 3.23083976e+08-6.87920775e-09j ... 3.46229386e+08-4.82429866e-09j 3.55786289e+08+1.49051214e-09j 3.39190618e+08-4.60072345e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49375789e+08-7.98655952e-09j 3.55859842e+08+1.04425825e-08j 3.52217434e+08-2.24511438e-09j ... 3.83498579e+08-4.59169736e-09j 3.88552881e+08-6.50135198e-09j 3.64306544e+08+8.11502074e-10j] [3.90369907e+08+5.98572526e-09j 3.74299701e+08+2.42107191e-10j 3.60156880e+08-6.13673470e-09j ... 3.81439265e+08+3.96505143e-09j 3.96345899e+08+1.64991905e-09j 3.99655432e+08+2.26578136e-09j] [4.48868160e+08-1.58371682e-09j 4.12648760e+08+5.02199405e-09j 3.74721154e+08-4.60980060e-09j ... 3.72703094e+08-2.22701114e-09j 3.99853027e+08+1.93875885e-09j 4.39006309e+08+1.53909784e-09j] ... [2.85239664e+08+6.06932735e-09j 2.86367074e+08+1.47901999e-09j 2.88146297e+08-3.31165727e-09j ... 2.85319590e+08-1.71572725e-08j 2.77542463e+08-1.73967426e-09j 2.81823868e+08+6.85751820e-09j] [3.07453246e+08-1.35304937e-08j 3.04064201e+08-3.64562077e-09j 2.96498176e+08-6.12319308e-09j ... 3.01411798e+08-2.25810743e-09j 3.06031120e+08-5.93938553e-10j 3.05871747e+08+5.04006876e-09j] [3.31486818e+08-3.05967493e-09j 3.34116555e+08+1.01763925e-09j 3.23083976e+08-6.87920775e-09j ... 3.46229386e+08-4.82429866e-09j 3.55786289e+08+1.49051214e-09j 3.39190618e+08-4.60072345e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184172.40653766668: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300403957061.2283-2.117582368135751e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300403957061.2283-2.117582368135751e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300403980648.4012: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300403980648.4012: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300403957061.2283: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300403957061.2283: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.02744385 0.81281929 0.75750506 ... 0.42839019 0.33583118 1.31167265] [0.48556687 0.24154579 0.17562536 ... 0.05842966 0.42097887 1.23314606] [0.38407283 0.4381562 0.1459729 ... 0.0546291 0.1680269 0.29413706] ... [0.29413706 0.1680269 0.0546291 ... 0.1459729 0.4381562 0.38407283] [1.23314606 0.42097887 0.05842966 ... 0.17562536 0.24154579 0.48556687] [1.31167265 0.33583118 0.42839019 ... 0.75750506 0.81281929 1.02744385]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.19750186+0.00000000e+00j -1861.56561109-7.31411128e+01j 1275.03671686+1.00347567e+02j ... -712.66683941+8.43496812e+01j 1275.03671686-1.00347567e+02j -1861.56561109+7.31411128e+01j] [-1875.25129638-7.36788249e+01j 1617.28224174+1.27282874e+02j -1130.75819433-1.33834054e+02j ... 675.47193282-5.31607955e+01j -1136.76419013+4.46635874e+01j 1623.19246795+6.39488462e-15j] [ 1248.09484184+9.82271958e+01j -1141.12563974-1.35061122e+02j 807.75394763+1.27935660e+02j ... -506.9071556 +1.99164371e+01j 816.4970872 +2.27373675e-14j -1147.15444973-4.50718218e+01j] ... [ -767.53159276+9.08433527e+01j 652.5725935 -5.13585784e+01j -436.62770229+1.71551499e+01j ... 236.62023672-5.68074974e+01j -431.59174456+8.58489395e+01j 641.2237694 -1.01559871e+02j] [ 1248.09484184-9.82271958e+01j -1147.15444973+4.50718218e+01j 816.4970872 -1.42108547e-14j ... -502.1228703 +9.98784526e+01j 807.75394763-1.27935660e+02j -1141.12563974+1.35061122e+02j] [-1875.25129638+7.36788249e+01j 1623.19246795-5.11590770e-14j -1136.76419013-4.46635874e+01j ... 663.33302045-1.05061632e+02j -1130.75819433+1.33834054e+02j 1617.28224174-1.27282874e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49367410e+08+1.58796771e-08j 3.55015475e+08+1.67273281e-09j 3.52194097e+08+6.22777531e-09j ... 3.82674571e+08-3.75627553e-09j 3.89187225e+08+2.63512857e-09j 3.65777147e+08-1.63431943e-10j] [3.91077962e+08-2.01904117e-09j 3.74445386e+08-5.65625632e-09j 3.60756265e+08+3.09266311e-09j ... 3.80475878e+08+6.53650904e-09j 3.96005701e+08+2.85045045e-09j 4.00608904e+08-1.47723322e-09j] [4.49191270e+08-2.45573604e-09j 4.13208854e+08-5.74874396e-09j 3.75082395e+08-1.41198018e-09j ... 3.71947802e+08+7.91197974e-10j 3.98165545e+08-4.05875244e-09j 4.38219892e+08+2.74695110e-09j] ... [2.84917427e+08+2.80397236e-09j 2.86265631e+08-7.98555228e-09j 2.87894695e+08+3.07702869e-09j ... 2.85773786e+08-5.52868236e-09j 2.78591487e+08+1.53867826e-08j 2.81654501e+08+2.68996609e-10j] [3.07347646e+08+4.13823759e-09j 3.04722574e+08-1.17268612e-08j 2.96505681e+08+1.94723958e-08j ... 3.01039437e+08-1.82747591e-09j 3.06556557e+08-4.70829840e-09j 3.05810587e+08-1.32758516e-09j] [3.31050504e+08+2.46583685e-08j 3.33839293e+08-8.09469165e-09j 3.23028541e+08+1.58711104e-09j ... 3.45424965e+08+1.03455678e-09j 3.56243047e+08+6.40692927e-09j 3.39733978e+08-3.71889232e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49367410e+08+1.58796771e-08j 3.55015475e+08+1.67273281e-09j 3.52194097e+08+6.22777531e-09j ... 3.82674571e+08-3.75627553e-09j 3.89187225e+08+2.63512857e-09j 3.65777147e+08-1.63431943e-10j] [3.91077962e+08-2.01904117e-09j 3.74445386e+08-5.65625632e-09j 3.60756265e+08+3.09266311e-09j ... 3.80475878e+08+6.53650904e-09j 3.96005701e+08+2.85045045e-09j 4.00608904e+08-1.47723322e-09j] [4.49191270e+08-2.45573604e-09j 4.13208854e+08-5.74874396e-09j 3.75082395e+08-1.41198018e-09j ... 3.71947802e+08+7.91197974e-10j 3.98165545e+08-4.05875244e-09j 4.38219892e+08+2.74695110e-09j] ... [2.84917427e+08+2.80397236e-09j 2.86265631e+08-7.98555228e-09j 2.87894695e+08+3.07702869e-09j ... 2.85773786e+08-5.52868236e-09j 2.78591487e+08+1.53867826e-08j 2.81654501e+08+2.68996609e-10j] [3.07347646e+08+4.13823759e-09j 3.04722574e+08-1.17268612e-08j 2.96505681e+08+1.94723958e-08j ... 3.01039437e+08-1.82747591e-09j 3.06556557e+08-4.70829840e-09j 3.05810587e+08-1.32758516e-09j] [3.31050504e+08+2.46583685e-08j 3.33839293e+08-8.09469165e-09j 3.23028541e+08+1.58711104e-09j ... 3.45424965e+08+1.03455678e-09j 3.56243047e+08+6.40692927e-09j 3.39733978e+08-3.71889232e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184175.8001484755: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300409492386.17114-2.117582368135751e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300409492386.17114-2.117582368135751e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300409515973.7787: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300409515973.7787: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300409492386.17114: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300409492386.17114: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[0.53736723 0.53835953 0.2889074 ... 1.4238373 0.29039584 0.5574165 ] [0.5532579 0.45166248 0.22638305 ... 0.58798452 0.12677299 0.76645511] [0.27294892 0.28749228 0.43264361 ... 0.08105436 0.07019655 0.61430803] ... [0.61430803 0.07019655 0.08105436 ... 0.43264361 0.28749228 0.27294892] [0.76645511 0.12677299 0.58798452 ... 0.22638305 0.45166248 0.5532579 ] [0.5574165 0.29039584 1.4238373 ... 0.2889074 0.53835953 0.53736723]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.30952631+0.00000000e+00j -1861.63501386-7.31438397e+01j 1274.85067998+1.00332926e+02j ... -713.07103544+8.43975210e+01j 1274.85067998-1.00332926e+02j -1861.63501386+7.31438397e+01j] [-1875.13124629-7.36741081e+01j 1616.7731216 +1.27242806e+02j -1131.40442133-1.33910540e+02j ... 678.17092185-5.33732106e+01j -1136.41799786+4.46499855e+01j 1623.58026812-2.13162821e-14j] [ 1248.42373073+9.82530800e+01j -1141.51356865-1.35107037e+02j 808.46390708+1.28048106e+02j ... -503.89418959+1.97980574e+01j 815.90283846+7.10542736e-15j -1146.50748553-4.50464025e+01j] ... [ -766.93690002+9.07729662e+01j 655.49954847-5.15889348e+01j -435.52231869+1.71117193e+01j ... 240.16886748-5.76594483e+01j -433.54047743+8.62365665e+01j 638.85610058-1.01184869e+02j] [ 1248.42373073-9.82530800e+01j -1146.50748553+4.50464025e+01j 815.90283846-1.42108547e-15j ... -503.68044121+1.00188273e+02j 808.46390708-1.28048106e+02j -1141.51356865+1.35107037e+02j] [-1875.13124629+7.36741081e+01j 1623.58026812-3.69482223e-14j -1136.41799786-4.46499855e+01j ... 660.18856508-1.04563599e+02j -1131.40442133+1.33910540e+02j 1616.7731216 -1.27242806e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49542849e+08+1.10210313e-08j 3.54026399e+08+1.81345328e-09j 3.51996854e+08+1.03061843e-08j ... 3.81579474e+08+1.98361799e-09j 3.89449530e+08+9.76277571e-09j 3.67324484e+08+1.50201316e-08j] [3.91994217e+08+3.86293340e-11j 3.74601171e+08+4.82383400e-09j 3.61303529e+08+1.14891518e-08j ... 3.79625773e+08-2.23159814e-09j 3.95644108e+08+1.20944060e-08j 4.01755729e+08+1.73540368e-08j] [4.49241189e+08+1.20396654e-08j 4.13678532e+08+4.13266477e-09j 3.75628755e+08+1.81096489e-08j ... 3.71327743e+08+6.64023086e-09j 3.96387297e+08+5.10616283e-09j 4.37240687e+08+9.70868250e-09j] ... [2.84508632e+08+1.67147356e-08j 2.85955072e+08+9.44615486e-11j 2.87542759e+08+9.35466930e-09j ... 2.85842240e+08-1.19674507e-09j 2.79887697e+08+1.75002997e-08j 2.81770525e+08+8.84377316e-09j] [3.07271495e+08+1.02216655e-08j 3.05481427e+08+3.14113537e-09j 2.96915660e+08+9.01569138e-09j ... 3.00606303e+08-2.90049888e-09j 3.07234568e+08+2.04857704e-08j 3.05981349e+08+2.42795993e-08j] [3.30634791e+08+1.21332566e-08j 3.33572383e+08-4.47312960e-09j 3.23234453e+08+3.85105665e-09j ... 3.44378921e+08-9.22731683e-09j 3.56339068e+08+2.27376474e-08j 3.40217875e+08+1.32000227e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49542849e+08+1.10210313e-08j 3.54026399e+08+1.81345328e-09j 3.51996854e+08+1.03061843e-08j ... 3.81579474e+08+1.98361799e-09j 3.89449530e+08+9.76277571e-09j 3.67324484e+08+1.50201316e-08j] [3.91994217e+08+3.86293340e-11j 3.74601171e+08+4.82383400e-09j 3.61303529e+08+1.14891518e-08j ... 3.79625773e+08-2.23159814e-09j 3.95644108e+08+1.20944060e-08j 4.01755729e+08+1.73540368e-08j] [4.49241189e+08+1.20396654e-08j 4.13678532e+08+4.13266477e-09j 3.75628755e+08+1.81096489e-08j ... 3.71327743e+08+6.64023086e-09j 3.96387297e+08+5.10616283e-09j 4.37240687e+08+9.70868250e-09j] ... [2.84508632e+08+1.67147356e-08j 2.85955072e+08+9.44615486e-11j 2.87542759e+08+9.35466930e-09j ... 2.85842240e+08-1.19674507e-09j 2.79887697e+08+1.75002997e-08j 2.81770525e+08+8.84377316e-09j] [3.07271495e+08+1.02216655e-08j 3.05481427e+08+3.14113537e-09j 2.96915660e+08+9.01569138e-09j ... 3.00606303e+08-2.90049888e-09j 3.07234568e+08+2.04857704e-08j 3.05981349e+08+2.42795993e-08j] [3.30634791e+08+1.21332566e-08j 3.33572383e+08-4.47312960e-09j 3.23234453e+08+3.85105665e-09j ... 3.44378921e+08-9.22731683e-09j 3.56339068e+08+2.27376474e-08j 3.40217875e+08+1.32000227e-08j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184184.7621045317: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300424110249.4705+1.0587911840678754e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300424110249.4705+1.0587911840678754e-22j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300424133838.2258: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300424133838.2258: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300424110249.4705: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300424110249.4705: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:989 ---------------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:990 crosscorrelate: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:991 a: [[ 6.6441317 5.1588283 7.2468615 ... 0.86152774 2.091923 0.49554837] [-0.35752726 -2.3968318 5.119203 ... 1.8590947 -0.38944176 2.156289 ] [ 2.530359 4.8231187 0.5907226 ... 1.907503 2.346003 1.11195 ] ... [ 9.63237 7.439418 12.377347 ... 26.819382 16.2263 13.384972 ] [12.703012 14.294852 23.47017 ... 21.919937 21.35365 14.154327 ] [12.263989 12.3126 16.180689 ... 11.048957 9.515678 10.940601 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:992 A: [[ 20388.77339911 +0.j -15888.25065076-1643.81509007j 9675.04282723+1929.74857094j ... -4318.61946158+1311.8918852j 9675.04282723-1929.74857094j -15888.25065076+1643.81509007j] [-14735.71706386+6434.47992557j 12798.53686255-4129.94102986j -8481.66673201+1856.85068709j ... 3161.80094234-2756.95256514j -7167.75614612+4937.92425198j 11731.37063374-6570.8671088j ] [ 6723.66512004-7229.5125859j -6431.36206627+5648.2667142j 4540.52329216-3289.01665309j ... -1050.15742693+2466.7958148j 2945.21162374-4757.53870563j -5195.7912927 +6768.63197065j] ... [ -1707.67989514-4861.98799503j 939.05233857+3821.72989995j -253.23823564-2189.95246464j ... 596.53668284 +747.24773352j -1124.93268605-1899.12672223j 1676.33707373+3561.44284713j] [ 6723.66512004+7229.5125859j -5195.7912927 -6768.63197065j 2945.21162374+4757.53870563j ... -2335.89755237-1320.81354528j 4540.52329216+3289.01665309j -6431.36206627-5648.2667142j ] [-14735.71706386-6434.47992557j 11731.37063374+6570.8671088j -7167.75614612-4937.92425198j ... 4220.41405337 +492.65102332j -8481.66673201-1856.85068709j 12798.53686255+4129.94102986j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:993 b: [[1.0612131 0.45246816 0.37158019 ... 1.2886371 0.95503905 0.13339461] [1.3065923 0.25420942 0.4690226 ... 1.06772517 0.98307873 0.13094039] [0.71855686 0.22207436 0.21449015 ... 0.26298769 0.23684203 0.16722422] ... [0.16722422 0.23684203 0.26298769 ... 0.21449015 0.22207436 0.71855686] [0.13094039 0.98307873 1.06772517 ... 0.4690226 0.25420942 1.3065923 ] [0.13339461 0.95503905 1.2886371 ... 0.37158019 0.45246816 1.0612131 ]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:994 B: [[ 2302.53958857+0.00000000e+00j -1861.69350207-7.31461377e+01j 1274.61256377+1.00314186e+02j ... -713.66015855+8.44672483e+01j 1274.61256377-1.00314186e+02j -1861.69350207+7.31461377e+01j] [-1874.87263235-7.36639471e+01j 1616.3065144 +1.27206083e+02j -1132.0526357 -1.33987261e+02j ... 680.73637764-5.35751163e+01j -1136.09853995+4.46374340e+01j 1623.9884349 +4.26325641e-15j] [ 1249.00535555+9.82988548e+01j -1141.75492229-1.35135603e+02j 809.26427245+1.28174872e+02j ... -500.41699214+1.96614379e+01j 815.42197356-3.41060513e-14j -1145.74186116-4.50163211e+01j] ... [ -765.92844163+9.06536073e+01j 658.59213704-5.18323268e+01j -434.65662644+1.70777061e+01j ... 243.88457711-5.85515112e+01j -435.72521447+8.66711377e+01j 636.74436209-1.00850402e+02j] [ 1249.00535555-9.82988548e+01j -1145.74186116+4.50163211e+01j 815.42197356+2.84217094e-14j ... -504.64114063+1.00379368e+02j 809.26427245-1.28174872e+02j -1141.75492229+1.35135603e+02j] [-1874.87263235+7.36639471e+01j 1623.9884349 -7.67386155e-14j -1136.09853995-4.46374340e+01j ... 657.05680654-1.04067578e+02j -1132.0526357 +1.33987261e+02j 1616.3065144 -1.27206083e+02j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49862768e+08-1.66189668e-08j 3.52959602e+08-2.25623551e-09j 3.51677882e+08-5.56183003e-09j ... 3.80304802e+08-1.16058050e-08j 3.89385837e+08-1.52367779e-08j 3.68880301e+08-2.52167297e-09j] [3.93065209e+08-2.20018291e-08j 3.74718965e+08-6.21751377e-09j 3.61844953e+08-5.39941296e-09j ... 3.78904420e+08-1.85459408e-09j 3.95235594e+08-1.05084100e-09j 4.03060119e+08+5.77500800e-09j] [4.49129852e+08-1.39996220e-08j 4.14014952e+08-1.92426995e-09j 3.76305904e+08-8.23574446e-09j ... 3.70852028e+08-1.24061604e-08j 3.94523859e+08-7.37874367e-09j 4.36166388e+08+1.65413360e-08j] ... [2.84073539e+08-2.16150940e-08j 2.85416276e+08+1.49500130e-09j 2.87029188e+08-1.16120280e-08j ... 2.85531540e+08-1.14690729e-08j 2.81306746e+08-1.69144077e-08j 2.82175799e+08+8.26755964e-09j] [3.07261111e+08-2.86879207e-08j 3.06280887e+08-1.16889866e-09j 2.97605607e+08-1.45032828e-08j ... 3.00113934e+08-1.74539944e-08j 3.07997124e+08-1.96561664e-08j 3.06334919e+08+1.82165993e-08j] [3.30288600e+08-1.55859453e-08j 3.33369870e+08-5.22764475e-09j 3.23634422e+08-1.42706616e-08j ... 3.43151859e+08-1.68410542e-08j 3.56120760e+08-8.70314253e-09j 3.40612172e+08+8.19713131e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:995 c: [[3.49862768e+08-1.66189668e-08j 3.52959602e+08-2.25623551e-09j 3.51677882e+08-5.56183003e-09j ... 3.80304802e+08-1.16058050e-08j 3.89385837e+08-1.52367779e-08j 3.68880301e+08-2.52167297e-09j] [3.93065209e+08-2.20018291e-08j 3.74718965e+08-6.21751377e-09j 3.61844953e+08-5.39941296e-09j ... 3.78904420e+08-1.85459408e-09j 3.95235594e+08-1.05084100e-09j 4.03060119e+08+5.77500800e-09j] [4.49129852e+08-1.39996220e-08j 4.14014952e+08-1.92426995e-09j 3.76305904e+08-8.23574446e-09j ... 3.70852028e+08-1.24061604e-08j 3.94523859e+08-7.37874367e-09j 4.36166388e+08+1.65413360e-08j] ... [2.84073539e+08-2.16150940e-08j 2.85416276e+08+1.49500130e-09j 2.87029188e+08-1.16120280e-08j ... 2.85531540e+08-1.14690729e-08j 2.81306746e+08-1.69144077e-08j 2.82175799e+08+8.26755964e-09j] [3.07261111e+08-2.86879207e-08j 3.06280887e+08-1.16889866e-09j 2.97605607e+08-1.45032828e-08j ... 3.00113934e+08-1.74539944e-08j 3.07997124e+08-1.96561664e-08j 3.06334919e+08+1.82165993e-08j] [3.30288600e+08-1.55859453e-08j 3.33369870e+08-5.22764475e-09j 3.23634422e+08-1.42706616e-08j ... 3.43151859e+08-1.68410542e-08j 3.56120760e+08-8.70314253e-09j 3.40612172e+08+8.19713131e-09j]]: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:996 a.sum: 1631102.0: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:997 b.sum: 184203.16708587215: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300454130648.9878+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:998 c.sum: (300454130648.9878+0j): DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300454154240.1002: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:999 a.sum*b.sum: 300454154240.1002: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300454130648.9878: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1000 c.sum.real: 300454130648.9878: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:1001 a.sum*b.sum/c.sum.real: 1.000000078518183: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=45, peaky=38, distance to edge=34 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:432 peakx=45, peaky=38, distance to edge=34 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.7366167584047302, 0.2307000257259901) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:321 Passed to model_array: psf_offset: (0.7366167584047302, 0.2307000257259901) DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[8.39049153e-05 9.43555922e-05 1.05328239e-04 ... 3.52407029e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 Primary beam in the model created: [[8.39049153e-05 9.43555922e-05 1.05328239e-04 ... 3.52407029e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 3.34534707e-04 3.16908736e-04] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 3.34534707e-04 3.16908736e-04] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [9.40138940e-05 1.05063445e-04 1.16628666e-04 ... 3.73769556e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [9.40138940e-05 1.05063445e-04 1.16628666e-04 ... 3.73769556e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 3.55409143e-04 3.37281743e-04] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 3.55409143e-04 3.37281743e-04] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [1.04790749e-04 1.16443471e-04 1.28605168e-04 ... 3.95889588e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [1.04790749e-04 1.16443471e-04 1.28605168e-04 ... 3.95889588e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 3.77043813e-04 3.58417292e-04] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 3.77043813e-04 3.58417292e-04] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 ... DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [1.75492878e-04 1.91025719e-04 2.07072726e-04 ... 4.94400908e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [1.75492878e-04 1.91025719e-04 2.07072726e-04 ... 4.94400908e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 4.74588779e-04 4.54888310e-04] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 4.74588779e-04 4.54888310e-04] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [1.60067634e-04 1.74917473e-04 1.90290356e-04 ... 4.70482323e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [1.60067634e-04 1.74917473e-04 1.90290356e-04 ... 4.70482323e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 4.51081054e-04 4.31806605e-04] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 4.51081054e-04 4.31806605e-04] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [1.45447300e-04 1.59617114e-04 1.74318408e-04 ... 4.47280922e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 [1.45447300e-04 1.59617114e-04 1.74318408e-04 ... 4.47280922e-04 DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 4.28294859e-04 4.09450374e-04]] DEBUG stpipe.Ami3Pipeline.ami_analyze:lg_model.py:323 4.28294859e-04 4.09450374e-04]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:769 ------- DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:770 makeA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 0, h1: 1, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 1, h1: 2, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 2, h1: 3, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 3, h1: 4, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 4, h1: 5, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 5, h1: 6, h2: 0 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 6, h1: 2, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 7, h1: 3, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 8, h1: 4, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 9, h1: 5, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 10, h1: 6, h2: 1 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 11, h1: 3, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 12, h1: 4, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 13, h1: 5, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 14, h1: 6, h2: 2 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 15, h1: 4, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 16, h1: 5, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 17, h1: 6, h2: 3 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 18, h1: 5, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 19, h1: 6, h2: 4 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:782 row: 20, h1: 6, h2: 5 DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:788 matrixA: DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] DEBUG stpipe.Ami3Pipeline.ami_analyze:utils.py:789 [[-1. 1. 0. 0. 0. 0. 0.] [-1. 0. 1. 0. 0. 0. 0.] [-1. 0. 0. 1. 0. 0. 0.] [-1. 0. 0. 0. 1. 0. 0.] [-1. 0. 0. 0. 0. 1. 0.] [-1. 0. 0. 0. 0. 0. 1.] [ 0. -1. 1. 0. 0. 0. 0.] [ 0. -1. 0. 1. 0. 0. 0.] [ 0. -1. 0. 0. 1. 0. 0.] [ 0. -1. 0. 0. 0. 1. 0.] [ 0. -1. 0. 0. 0. 0. 1.] [ 0. 0. -1. 1. 0. 0. 0.] [ 0. 0. -1. 0. 1. 0. 0.] [ 0. 0. -1. 0. 0. 1. 0.] [ 0. 0. -1. 0. 0. 0. 1.] [ 0. 0. 0. -1. 1. 0. 0.] [ 0. 0. 0. -1. 0. 1. 0.] [ 0. 0. 0. -1. 0. 0. 1.] [ 0. 0. 0. 0. -1. 1. 0.] [ 0. 0. 0. 0. -1. 0. 1.] [ 0. 0. 0. 0. 0. -1. 1.]] INFO stpipe.Ami3Pipeline.ami_analyze:step.py:546 Step ami_analyze done INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw01093007001_03102_00014_nis_a3001_ami.fits DEBUG stpipe.Ami3Pipeline:calwebb_ami3.py:129 Calling ami_average for target results ... INFO stpipe.Ami3Pipeline.ami_average:step.py:430 Step ami_average running with args ([<AmiLgModel(67, 67) from jw01093007001_03102_00001_nis_a3001_ami.fits>, <AmiLgModel(67, 67) from jw01093007001_03102_00012_nis_a3001_ami.fits>, <AmiLgModel(69, 69) from jw01093007001_03102_00013_nis_a3001_ami.fits>, <AmiLgModel(69, 69) from jw01093007001_03102_00014_nis_a3001_ami.fits>],). INFO stpipe.Ami3Pipeline.ami_average:step.py:434 Step ami_average parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_ami3_run_pipeline0'} DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:29 create output as copy of <AmiLgModel(67, 67) from jw01093007001_03102_00001_nis_a3001_ami.fits> DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:29 create output as copy of <AmiLgModel(67, 67) from jw01093007001_03102_00001_nis_a3001_ami.fits> DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:39 minimum size of fit_image=67 DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:39 minimum size of fit_image=67 INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(67, 67) from jw01093007001_03102_00001_nis_a3001_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(67, 67) from jw01093007001_03102_00001_nis_a3001_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(67, 67) from jw01093007001_03102_00012_nis_a3001_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(67, 67) from jw01093007001_03102_00012_nis_a3001_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(69, 69) from jw01093007001_03102_00013_nis_a3001_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(69, 69) from jw01093007001_03102_00013_nis_a3001_ami.fits> DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:52 trim fit and resid images by 1 pixels DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:52 trim fit and resid images by 1 pixels INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(69, 69) from jw01093007001_03102_00014_nis_a3001_ami.fits> INFO stpipe.Ami3Pipeline.ami_average:ami_average.py:44 Accumulate data from <AmiLgModel(69, 69) from jw01093007001_03102_00014_nis_a3001_ami.fits> DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:52 trim fit and resid images by 1 pixels DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:52 trim fit and resid images by 1 pixels DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:80 Divide accumulated results by 4 DEBUG stpipe.Ami3Pipeline.ami_average:ami_average.py:80 Divide accumulated results by 4 INFO stpipe.Ami3Pipeline.ami_average:step.py:546 Step ami_average done INFO stpipe.Ami3Pipeline:calwebb_ami3.py:139 Blending metadata for averaged target INFO stpipe.Ami3Pipeline:step.py:1016 Saved model in jw01093-o007_result_short_amiavg.fits INFO stpipe.Ami3Pipeline:calwebb_ami3.py:164 ... ending calwebb_ami3 INFO stpipe.Ami3Pipeline:calwebb_ami3.py:164 ... ending calwebb_ami3 INFO stpipe.Ami3Pipeline:step.py:546 Step Ami3Pipeline done | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[calints] | 207.51 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-12-04 03:39:03,496 - CRDS - ERROR - Error determining best reference for 'pars-residualfringestep' = Unknown reference type 'pars-residualfringestep' 2022-12-04 03:39:03,508 - stpipe - INFO - PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0003.asdf 2022-12-04 03:39:03,545 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2022-12-04 03:39:03,546 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-12-04 03:39:03,547 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-12-04 03:39:03,548 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2022-12-04 03:39:03,548 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2022-12-04 03:39:03,549 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2022-12-04 03:39:03,552 - stpipe.Spec2Pipeline.master_background_mos - INFO - MasterBackgroundMosStep instance created. 2022-12-04 03:39:03,552 - stpipe.Spec2Pipeline.master_background_mos.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:39:03,554 - stpipe.Spec2Pipeline.master_background_mos.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:39:03,555 - stpipe.Spec2Pipeline.master_background_mos.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:39:03,556 - stpipe.Spec2Pipeline.master_background_mos.photom - INFO - PhotomStep instance created. 2022-12-04 03:39:03,556 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2022-12-04 03:39:03,557 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:39:03,558 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2022-12-04 03:39:03,559 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2022-12-04 03:39:03,559 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2022-12-04 03:39:03,560 - stpipe.Spec2Pipeline.residual_fringe - INFO - ResidualFringeStep instance created. 2022-12-04 03:39:03,561 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:39:03,561 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:39:03,562 - stpipe.Spec2Pipeline.wfss_contam - INFO - WfssContamStep instance created. 2022-12-04 03:39:03,563 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2022-12-04 03:39:03,564 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2022-12-04 03:39:03,565 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2022-12-04 03:39:03,566 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-12-04 03:39:03,709 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg001_nis_short_rateints.fits',). 2022-12-04 03:39:03,722 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 1000}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} 2022-12-04 03:39:03,996 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw01091002001_03101_00001-seg001_nis_short_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap'] 2022-12-04 03:39:04,014 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is 'N/A'. 2022-12-04 03:39:04,014 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2022-12-04 03:39:04,014 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-12-04 03:39:04,014 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-12-04 03:39:04,014 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-12-04 03:39:04,014 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-12-04 03:39:04,014 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is 'N/A'. 2022-12-04 03:39:04,014 - stpipe.Spec2Pipeline - INFO - Prefetch for EXTRACT1D reference file is '/grp/crds/cache/references/jwst/jwst_niriss_extract1d_0003.json'. 2022-12-04 03:39:04,016 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-12-04 03:39:04,016 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'N/A'. 2022-12-04 03:39:04,016 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0275.fits'. 2022-12-04 03:39:04,017 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-12-04 03:39:04,018 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-12-04 03:39:04,018 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2022-12-04 03:39:04,018 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-12-04 03:39:04,018 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-12-04 03:39:04,018 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-12-04 03:39:04,018 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-12-04 03:39:04,018 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-12-04 03:39:04,018 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits'. 2022-12-04 03:39:04,020 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-12-04 03:39:04,020 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-12-04 03:39:04,020 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECKERNEL reference file is '/grp/crds/cache/references/jwst/jwst_niriss_speckernel_0004.fits'. 2022-12-04 03:39:04,021 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECPROFILE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specprofile_0022.fits'. 2022-12-04 03:39:04,023 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECTRACE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_spectrace_0023.fits'. 2022-12-04 03:39:04,025 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf'. 2022-12-04 03:39:04,026 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2022-12-04 03:39:04,026 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2022-12-04 03:39:04,026 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVEMAP reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavemap_0022.fits'. 2022-12-04 03:39:04,028 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2022-12-04 03:39:04,029 - stpipe.Spec2Pipeline - INFO - Processing product /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg001_nis_short 2022-12-04 03:39:04,029 - stpipe.Spec2Pipeline - INFO - Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg001_nis_short_rateints.fits ... 2022-12-04 03:39:04,433 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_rateints.fits>,). 2022-12-04 03:39:04,434 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-12-04 03:39:05,924 - stpipe.Spec2Pipeline.assign_wcs - INFO - Applied Barycentric velocity correction: 0.9999951852589625 2022-12-04 03:39:06,080 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-12-04 03:39:06,094 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-12-04 03:39:06,234 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_rateints.fits>, []). 2022-12-04 03:39:06,235 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} 2022-12-04 03:39:06,235 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step skipped. 2022-12-04 03:39:06,237 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2022-12-04 03:39:06,375 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_rateints.fits>, []). 2022-12-04 03:39:06,376 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} 2022-12-04 03:39:06,376 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2022-12-04 03:39:06,378 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2022-12-04 03:39:06,515 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_rateints.fits>,). 2022-12-04 03:39:06,515 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} 2022-12-04 03:39:06,516 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2022-12-04 03:39:06,518 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2022-12-04 03:39:06,658 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_rateints.fits>,). 2022-12-04 03:39:06,659 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'source_type': None} 2022-12-04 03:39:06,668 - stpipe.Spec2Pipeline.srctype - INFO - Input EXP_TYPE is NIS_SOSS 2022-12-04 03:39:06,668 - stpipe.Spec2Pipeline.srctype - INFO - Input SRCTYAPT = POINT 2022-12-04 03:39:06,668 - stpipe.Spec2Pipeline.srctype - INFO - Input is a TSO exposure; setting SRCTYPE = POINT 2022-12-04 03:39:06,982 - stpipe.Spec2Pipeline.srctype - INFO - Saved model in jw01091002001_03101_00001-seg001_nis_short_srctype.fits 2022-12-04 03:39:06,983 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype done 2022-12-04 03:39:07,124 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_srctype.fits>,). 2022-12-04 03:39:07,125 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-12-04 03:39:08,993 - stpipe.Spec2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2022-12-04 03:39:09,449 - stpipe.Spec2Pipeline.flat_field - INFO - Saved model in jw01091002001_03101_00001-seg001_nis_short_flat_field.fits 2022-12-04 03:39:09,449 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field done 2022-12-04 03:39:09,588 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_flat_field.fits>,). 2022-12-04 03:39:09,589 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} 2022-12-04 03:39:09,589 - stpipe.Spec2Pipeline.straylight - INFO - Step skipped. 2022-12-04 03:39:09,591 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight done 2022-12-04 03:39:09,726 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_flat_field.fits>,). 2022-12-04 03:39:09,726 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} 2022-12-04 03:39:09,727 - stpipe.Spec2Pipeline.fringe - INFO - Step skipped. 2022-12-04 03:39:09,729 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe done 2022-12-04 03:39:09,869 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_flat_field.fits>,). 2022-12-04 03:39:09,870 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} 2022-12-04 03:39:09,870 - stpipe.Spec2Pipeline.pathloss - INFO - Step skipped. 2022-12-04 03:39:09,873 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss done 2022-12-04 03:39:10,012 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_flat_field.fits>,). 2022-12-04 03:39:10,012 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} 2022-12-04 03:39:10,013 - stpipe.Spec2Pipeline.barshadow - INFO - Step skipped. 2022-12-04 03:39:10,015 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow done 2022-12-04 03:39:10,158 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_calints.fits>,). 2022-12-04 03:39:10,159 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:39:10,167 - stpipe.Spec2Pipeline.extract_1d - INFO - Input is a NIRISS SOSS observation, the specialized SOSS extraction (ATOCA) will be used. 2022-12-04 03:39:10,168 - stpipe.Spec2Pipeline.extract_1d - INFO - Exposure is through the GR700XD + CLEAR (science). 2022-12-04 03:39:10,168 - stpipe.Spec2Pipeline.extract_1d - INFO - Exposure is in the SUBSTRIP256 subarray. 2022-12-04 03:39:10,168 - stpipe.Spec2Pipeline.extract_1d - INFO - Traces 1 and 2 will be modelled and decontaminated before extraction. 2022-12-04 03:39:10,635 - stpipe.Spec2Pipeline.extract_1d - INFO - Input is a CubeModel containing 10 integrations. 2022-12-04 03:39:10,635 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 1 of 10. 2022-12-04 03:39:10,658 - stpipe.Spec2Pipeline.extract_1d - INFO - Solving for the transformation parameters. 2022-12-04 03:39:10,978 - stpipe.Spec2Pipeline.extract_1d - INFO - Measuring trace position for orders 1 and 2. 2022-12-04 03:39:11,330 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 2022-12-04 03:39:12,938 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] 2022-12-04 03:39:13,592 - stpipe.Spec2Pipeline.extract_1d - INFO - Solving for the optimal Tikhonov factor. 2022-12-04 03:39:15,583 - stpipe.Spec2Pipeline.extract_1d - INFO - Testing factors... 2022-12-04 03:39:16,022 - stpipe.Spec2Pipeline.extract_1d - INFO - 0/10 2022-12-04 03:39:16,475 - stpipe.Spec2Pipeline.extract_1d - INFO - 1/10 2022-12-04 03:39:16,915 - stpipe.Spec2Pipeline.extract_1d - INFO - 2/10 2022-12-04 03:39:17,356 - stpipe.Spec2Pipeline.extract_1d - INFO - 3/10 2022-12-04 03:39:17,800 - stpipe.Spec2Pipeline.extract_1d - INFO - 4/10 2022-12-04 03:39:18,243 - stpipe.Spec2Pipeline.extract_1d - INFO - 5/10 2022-12-04 03:39:18,688 - stpipe.Spec2Pipeline.extract_1d - INFO - 6/10 2022-12-04 03:39:19,127 - stpipe.Spec2Pipeline.extract_1d - INFO - 7/10 2022-12-04 03:39:19,562 - stpipe.Spec2Pipeline.extract_1d - INFO - 8/10 2022-12-04 03:39:19,994 - stpipe.Spec2Pipeline.extract_1d - INFO - 9/10 2022-12-04 03:39:19,995 - stpipe.Spec2Pipeline.extract_1d - INFO - 10/10 2022-12-04 03:39:21,841 - stpipe.Spec2Pipeline.extract_1d - INFO - Testing factors... 2022-12-04 03:39:22,280 - stpipe.Spec2Pipeline.extract_1d - INFO - 0/20 2022-12-04 03:39:22,726 - stpipe.Spec2Pipeline.extract_1d - INFO - 1/20 2022-12-04 03:39:23,160 - stpipe.Spec2Pipeline.extract_1d - INFO - 2/20 2022-12-04 03:39:23,611 - stpipe.Spec2Pipeline.extract_1d - INFO - 3/20 2022-12-04 03:39:24,049 - stpipe.Spec2Pipeline.extract_1d - INFO - 4/20 2022-12-04 03:39:24,487 - stpipe.Spec2Pipeline.extract_1d - INFO - 5/20 2022-12-04 03:39:24,923 - stpipe.Spec2Pipeline.extract_1d - INFO - 6/20 2022-12-04 03:39:25,361 - stpipe.Spec2Pipeline.extract_1d - INFO - 7/20 2022-12-04 03:39:25,806 - stpipe.Spec2Pipeline.extract_1d - INFO - 8/20 2022-12-04 03:39:26,257 - stpipe.Spec2Pipeline.extract_1d - INFO - 9/20 2022-12-04 03:39:26,710 - stpipe.Spec2Pipeline.extract_1d - INFO - 10/20 2022-12-04 03:39:27,163 - stpipe.Spec2Pipeline.extract_1d - INFO - 11/20 2022-12-04 03:39:27,606 - stpipe.Spec2Pipeline.extract_1d - INFO - 12/20 2022-12-04 03:39:28,041 - stpipe.Spec2Pipeline.extract_1d - INFO - 13/20 2022-12-04 03:39:28,471 - stpipe.Spec2Pipeline.extract_1d - INFO - 14/20 2022-12-04 03:39:28,904 - stpipe.Spec2Pipeline.extract_1d - INFO - 15/20 2022-12-04 03:39:29,335 - stpipe.Spec2Pipeline.extract_1d - INFO - 16/20 2022-12-04 03:39:29,758 - stpipe.Spec2Pipeline.extract_1d - INFO - 17/20 2022-12-04 03:39:30,193 - stpipe.Spec2Pipeline.extract_1d - INFO - 18/20 2022-12-04 03:39:30,625 - stpipe.Spec2Pipeline.extract_1d - INFO - 19/20 2022-12-04 03:39:30,625 - stpipe.Spec2Pipeline.extract_1d - INFO - 20/20 2022-12-04 03:39:30,645 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.4755876100630248e-22 2022-12-04 03:39:33,068 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4856520.214353738 2022-12-04 03:39:35,674 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:39:35,802 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:39:36,076 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 2 of 10. 2022-12-04 03:39:36,099 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 2022-12-04 03:39:37,762 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] 2022-12-04 03:39:38,427 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.4755876100630248e-22 2022-12-04 03:39:40,915 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4881822.483361602 2022-12-04 03:39:43,547 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:39:43,681 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:39:43,786 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 3 of 10. 2022-12-04 03:39:43,812 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 2022-12-04 03:39:45,486 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] 2022-12-04 03:39:46,144 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.4755876100630248e-22 2022-12-04 03:39:48,616 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4954751.67010198 2022-12-04 03:39:51,236 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:39:51,371 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:39:51,471 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 4 of 10. 2022-12-04 03:39:51,497 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 2022-12-04 03:39:53,150 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] 2022-12-04 03:39:53,827 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.4755876100630248e-22 2022-12-04 03:39:56,259 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4865483.666049339 2022-12-04 03:39:58,867 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:39:59,020 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:39:59,126 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 5 of 10. 2022-12-04 03:39:59,151 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 2022-12-04 03:40:00,790 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] 2022-12-04 03:40:01,467 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.4755876100630248e-22 2022-12-04 03:40:03,910 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4896352.250123579 2022-12-04 03:40:06,540 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:40:06,664 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:40:06,760 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 6 of 10. 2022-12-04 03:40:06,783 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 2022-12-04 03:40:08,463 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] 2022-12-04 03:40:09,103 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.4755876100630248e-22 2022-12-04 03:40:11,588 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4895215.082899148 2022-12-04 03:40:14,136 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:40:14,264 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:40:14,362 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 7 of 10. 2022-12-04 03:40:14,384 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 2022-12-04 03:40:16,023 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] 2022-12-04 03:40:16,699 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.4755876100630248e-22 2022-12-04 03:40:19,116 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4902129.7796687465 2022-12-04 03:40:21,698 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:40:21,831 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:40:21,926 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 8 of 10. 2022-12-04 03:40:21,951 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 2022-12-04 03:40:23,565 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] 2022-12-04 03:40:24,238 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.4755876100630248e-22 2022-12-04 03:40:26,695 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4994637.73494981 2022-12-04 03:40:29,256 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:40:29,379 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:40:29,479 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 9 of 10. 2022-12-04 03:40:29,503 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 2022-12-04 03:40:31,128 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] 2022-12-04 03:40:31,787 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.4755876100630248e-22 2022-12-04 03:40:34,215 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -7797026.569674485 2022-12-04 03:40:36,820 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:40:36,941 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:40:37,039 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 10 of 10. 2022-12-04 03:40:37,063 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 2022-12-04 03:40:38,703 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] 2022-12-04 03:40:39,359 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.4755876100630248e-22 2022-12-04 03:40:41,810 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4973773.734822123 2022-12-04 03:40:44,381 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:40:44,509 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:40:44,749 - stpipe.Spec2Pipeline.extract_1d - INFO - Populating INT_TIMES keywords from input table. 2022-12-04 03:40:44,912 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:40:45,118 - stpipe.Spec2Pipeline.photom - INFO - Step photom running with args (<MultiSpecModel from jw01091002001_03101_00001-seg001_nis_short_calints.fits>,). 2022-12-04 03:40:45,119 - stpipe.Spec2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} 2022-12-04 03:40:45,320 - stpipe.Spec2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits 2022-12-04 03:40:45,320 - stpipe.Spec2Pipeline.photom - INFO - Using area reference file: N/A 2022-12-04 03:40:45,480 - stpipe.Spec2Pipeline.photom - INFO - Using instrument: NIRISS 2022-12-04 03:40:45,480 - stpipe.Spec2Pipeline.photom - INFO - detector: NIS 2022-12-04 03:40:45,480 - stpipe.Spec2Pipeline.photom - INFO - exp_type: NIS_SOSS 2022-12-04 03:40:45,480 - stpipe.Spec2Pipeline.photom - INFO - filter: CLEAR 2022-12-04 03:40:45,481 - stpipe.Spec2Pipeline.photom - INFO - pupil: GR700XD 2022-12-04 03:40:45,544 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,547 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,550 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,552 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,555 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,557 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,560 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,563 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,565 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,568 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,570 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,573 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,576 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,578 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,581 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,583 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,586 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,589 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,591 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,594 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,596 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,599 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,601 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,604 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,607 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,610 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,612 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,615 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,617 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:45,620 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:40:46,239 - stpipe.Spec2Pipeline.photom - INFO - Saved model in jw01091002001_03101_00001-seg001_nis_short_x1dints.fits 2022-12-04 03:40:46,240 - stpipe.Spec2Pipeline.photom - INFO - Step photom done 2022-12-04 03:40:46,240 - stpipe.Spec2Pipeline - INFO - Finished processing product /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg001_nis_short 2022-12-04 03:40:46,240 - stpipe.Spec2Pipeline - INFO - Ending calwebb_spec2 2022-12-04 03:40:46,240 - stpipe.Spec2Pipeline - INFO - Results used CRDS context: jwst_1019.pmap 2022-12-04 03:40:46,550 - stpipe.Spec2Pipeline - INFO - Saved model in jw01091002001_03101_00001-seg001_nis_short_calints.fits 2022-12-04 03:40:46,550 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline done 2022-12-04 03:40:48,341 - CRDS - ERROR - Error determining best reference for 'pars-residualfringestep' = Unknown reference type 'pars-residualfringestep' 2022-12-04 03:40:48,348 - stpipe - INFO - PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0003.asdf 2022-12-04 03:40:48,382 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2022-12-04 03:40:48,383 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-12-04 03:40:48,384 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-12-04 03:40:48,385 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2022-12-04 03:40:48,385 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2022-12-04 03:40:48,386 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2022-12-04 03:40:48,389 - stpipe.Spec2Pipeline.master_background_mos - INFO - MasterBackgroundMosStep instance created. 2022-12-04 03:40:48,389 - stpipe.Spec2Pipeline.master_background_mos.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:40:48,390 - stpipe.Spec2Pipeline.master_background_mos.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:40:48,391 - stpipe.Spec2Pipeline.master_background_mos.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:40:48,391 - stpipe.Spec2Pipeline.master_background_mos.photom - INFO - PhotomStep instance created. 2022-12-04 03:40:48,392 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2022-12-04 03:40:48,393 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:40:48,394 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2022-12-04 03:40:48,394 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2022-12-04 03:40:48,395 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2022-12-04 03:40:48,396 - stpipe.Spec2Pipeline.residual_fringe - INFO - ResidualFringeStep instance created. 2022-12-04 03:40:48,396 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:40:48,397 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:40:48,398 - stpipe.Spec2Pipeline.wfss_contam - INFO - WfssContamStep instance created. 2022-12-04 03:40:48,399 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2022-12-04 03:40:48,400 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2022-12-04 03:40:48,401 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2022-12-04 03:40:48,402 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-12-04 03:40:48,749 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg002_nis_short_rateints.fits',). 2022-12-04 03:40:48,762 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 1000}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} 2022-12-04 03:40:49,015 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw01091002001_03101_00001-seg002_nis_short_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap'] 2022-12-04 03:40:49,025 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is 'N/A'. 2022-12-04 03:40:49,025 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2022-12-04 03:40:49,025 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-12-04 03:40:49,025 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-12-04 03:40:49,025 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-12-04 03:40:49,025 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-12-04 03:40:49,025 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is 'N/A'. 2022-12-04 03:40:49,025 - stpipe.Spec2Pipeline - INFO - Prefetch for EXTRACT1D reference file is '/grp/crds/cache/references/jwst/jwst_niriss_extract1d_0003.json'. 2022-12-04 03:40:49,027 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-12-04 03:40:49,027 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'N/A'. 2022-12-04 03:40:49,027 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0275.fits'. 2022-12-04 03:40:49,028 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-12-04 03:40:49,028 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-12-04 03:40:49,028 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2022-12-04 03:40:49,028 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-12-04 03:40:49,028 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-12-04 03:40:49,028 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-12-04 03:40:49,028 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-12-04 03:40:49,028 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-12-04 03:40:49,029 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits'. 2022-12-04 03:40:49,029 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-12-04 03:40:49,029 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-12-04 03:40:49,029 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECKERNEL reference file is '/grp/crds/cache/references/jwst/jwst_niriss_speckernel_0004.fits'. 2022-12-04 03:40:49,030 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECPROFILE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specprofile_0022.fits'. 2022-12-04 03:40:49,031 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECTRACE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_spectrace_0023.fits'. 2022-12-04 03:40:49,032 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf'. 2022-12-04 03:40:49,033 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2022-12-04 03:40:49,034 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2022-12-04 03:40:49,034 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVEMAP reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavemap_0022.fits'. 2022-12-04 03:40:49,035 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2022-12-04 03:40:49,035 - stpipe.Spec2Pipeline - INFO - Processing product /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg002_nis_short 2022-12-04 03:40:49,035 - stpipe.Spec2Pipeline - INFO - Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg002_nis_short_rateints.fits ... 2022-12-04 03:40:49,606 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). 2022-12-04 03:40:49,608 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-12-04 03:40:49,829 - stpipe.Spec2Pipeline.assign_wcs - INFO - Applied Barycentric velocity correction: 0.9999951852589625 2022-12-04 03:40:49,944 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-12-04 03:40:49,957 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-12-04 03:40:50,154 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>, []). 2022-12-04 03:40:50,154 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} 2022-12-04 03:40:50,155 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step skipped. 2022-12-04 03:40:50,157 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2022-12-04 03:40:50,323 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>, []). 2022-12-04 03:40:50,323 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} 2022-12-04 03:40:50,324 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2022-12-04 03:40:50,326 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2022-12-04 03:40:50,485 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). 2022-12-04 03:40:50,486 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} 2022-12-04 03:40:50,486 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2022-12-04 03:40:50,489 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2022-12-04 03:40:50,646 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). 2022-12-04 03:40:50,646 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'source_type': None} 2022-12-04 03:40:50,655 - stpipe.Spec2Pipeline.srctype - INFO - Input EXP_TYPE is NIS_SOSS 2022-12-04 03:40:50,656 - stpipe.Spec2Pipeline.srctype - INFO - Input SRCTYAPT = POINT 2022-12-04 03:40:50,656 - stpipe.Spec2Pipeline.srctype - INFO - Input is a TSO exposure; setting SRCTYPE = POINT 2022-12-04 03:40:50,659 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype done 2022-12-04 03:40:50,816 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). 2022-12-04 03:40:50,817 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-12-04 03:40:51,131 - stpipe.Spec2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2022-12-04 03:40:51,259 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field done 2022-12-04 03:40:51,422 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). 2022-12-04 03:40:51,423 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} 2022-12-04 03:40:51,423 - stpipe.Spec2Pipeline.straylight - INFO - Step skipped. 2022-12-04 03:40:51,425 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight done 2022-12-04 03:40:51,585 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). 2022-12-04 03:40:51,586 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} 2022-12-04 03:40:51,586 - stpipe.Spec2Pipeline.fringe - INFO - Step skipped. 2022-12-04 03:40:51,588 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe done 2022-12-04 03:40:51,748 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). 2022-12-04 03:40:51,749 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} 2022-12-04 03:40:51,749 - stpipe.Spec2Pipeline.pathloss - INFO - Step skipped. 2022-12-04 03:40:51,751 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss done 2022-12-04 03:40:51,909 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). 2022-12-04 03:40:51,910 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} 2022-12-04 03:40:51,910 - stpipe.Spec2Pipeline.barshadow - INFO - Step skipped. 2022-12-04 03:40:51,912 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow done 2022-12-04 03:40:52,077 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_calints.fits>,). 2022-12-04 03:40:52,078 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:40:52,087 - stpipe.Spec2Pipeline.extract_1d - INFO - Input is a NIRISS SOSS observation, the specialized SOSS extraction (ATOCA) will be used. 2022-12-04 03:40:52,087 - stpipe.Spec2Pipeline.extract_1d - INFO - Exposure is through the GR700XD + CLEAR (science). 2022-12-04 03:40:52,087 - stpipe.Spec2Pipeline.extract_1d - INFO - Exposure is in the SUBSTRIP256 subarray. 2022-12-04 03:40:52,087 - stpipe.Spec2Pipeline.extract_1d - INFO - Traces 1 and 2 will be modelled and decontaminated before extraction. 2022-12-04 03:40:52,310 - stpipe.Spec2Pipeline.extract_1d - INFO - Input is a CubeModel containing 10 integrations. 2022-12-04 03:40:52,310 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 1 of 10. 2022-12-04 03:40:52,334 - stpipe.Spec2Pipeline.extract_1d - INFO - Solving for the transformation parameters. 2022-12-04 03:40:52,654 - stpipe.Spec2Pipeline.extract_1d - INFO - Measuring trace position for orders 1 and 2. 2022-12-04 03:40:53,000 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 2022-12-04 03:40:54,624 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] 2022-12-04 03:40:55,269 - stpipe.Spec2Pipeline.extract_1d - INFO - Solving for the optimal Tikhonov factor. 2022-12-04 03:40:57,229 - stpipe.Spec2Pipeline.extract_1d - INFO - Testing factors... 2022-12-04 03:40:57,675 - stpipe.Spec2Pipeline.extract_1d - INFO - 0/10 2022-12-04 03:40:58,126 - stpipe.Spec2Pipeline.extract_1d - INFO - 1/10 2022-12-04 03:40:58,567 - stpipe.Spec2Pipeline.extract_1d - INFO - 2/10 2022-12-04 03:40:59,013 - stpipe.Spec2Pipeline.extract_1d - INFO - 3/10 2022-12-04 03:40:59,464 - stpipe.Spec2Pipeline.extract_1d - INFO - 4/10 2022-12-04 03:40:59,912 - stpipe.Spec2Pipeline.extract_1d - INFO - 5/10 2022-12-04 03:41:00,366 - stpipe.Spec2Pipeline.extract_1d - INFO - 6/10 2022-12-04 03:41:00,828 - stpipe.Spec2Pipeline.extract_1d - INFO - 7/10 2022-12-04 03:41:01,281 - stpipe.Spec2Pipeline.extract_1d - INFO - 8/10 2022-12-04 03:41:01,733 - stpipe.Spec2Pipeline.extract_1d - INFO - 9/10 2022-12-04 03:41:01,733 - stpipe.Spec2Pipeline.extract_1d - INFO - 10/10 2022-12-04 03:41:03,551 - stpipe.Spec2Pipeline.extract_1d - INFO - Testing factors... 2022-12-04 03:41:03,983 - stpipe.Spec2Pipeline.extract_1d - INFO - 0/20 2022-12-04 03:41:04,432 - stpipe.Spec2Pipeline.extract_1d - INFO - 1/20 2022-12-04 03:41:04,873 - stpipe.Spec2Pipeline.extract_1d - INFO - 2/20 2022-12-04 03:41:05,315 - stpipe.Spec2Pipeline.extract_1d - INFO - 3/20 2022-12-04 03:41:05,756 - stpipe.Spec2Pipeline.extract_1d - INFO - 4/20 2022-12-04 03:41:06,199 - stpipe.Spec2Pipeline.extract_1d - INFO - 5/20 2022-12-04 03:41:06,645 - stpipe.Spec2Pipeline.extract_1d - INFO - 6/20 2022-12-04 03:41:07,104 - stpipe.Spec2Pipeline.extract_1d - INFO - 7/20 2022-12-04 03:41:07,553 - stpipe.Spec2Pipeline.extract_1d - INFO - 8/20 2022-12-04 03:41:08,025 - stpipe.Spec2Pipeline.extract_1d - INFO - 9/20 2022-12-04 03:41:08,486 - stpipe.Spec2Pipeline.extract_1d - INFO - 10/20 2022-12-04 03:41:08,943 - stpipe.Spec2Pipeline.extract_1d - INFO - 11/20 2022-12-04 03:41:09,395 - stpipe.Spec2Pipeline.extract_1d - INFO - 12/20 2022-12-04 03:41:09,841 - stpipe.Spec2Pipeline.extract_1d - INFO - 13/20 2022-12-04 03:41:10,291 - stpipe.Spec2Pipeline.extract_1d - INFO - 14/20 2022-12-04 03:41:10,736 - stpipe.Spec2Pipeline.extract_1d - INFO - 15/20 2022-12-04 03:41:11,187 - stpipe.Spec2Pipeline.extract_1d - INFO - 16/20 2022-12-04 03:41:11,650 - stpipe.Spec2Pipeline.extract_1d - INFO - 17/20 2022-12-04 03:41:12,088 - stpipe.Spec2Pipeline.extract_1d - INFO - 18/20 2022-12-04 03:41:12,531 - stpipe.Spec2Pipeline.extract_1d - INFO - 19/20 2022-12-04 03:41:12,531 - stpipe.Spec2Pipeline.extract_1d - INFO - 20/20 2022-12-04 03:41:12,550 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 5.624818478739097e-17 2022-12-04 03:41:14,951 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4919328.248976819 2022-12-04 03:41:17,566 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:41:17,690 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:41:17,787 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 2 of 10. 2022-12-04 03:41:17,812 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 2022-12-04 03:41:19,434 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] 2022-12-04 03:41:20,056 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 5.624818478739097e-17 2022-12-04 03:41:22,459 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4990909.4276869 2022-12-04 03:41:25,003 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:41:25,126 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:41:25,219 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 3 of 10. 2022-12-04 03:41:25,244 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 2022-12-04 03:41:26,848 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] 2022-12-04 03:41:27,500 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 5.624818478739097e-17 2022-12-04 03:41:29,948 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4861946.952879176 2022-12-04 03:41:32,521 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:41:32,647 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:41:32,743 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 4 of 10. 2022-12-04 03:41:32,767 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 2022-12-04 03:41:34,380 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] 2022-12-04 03:41:35,033 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 5.624818478739097e-17 2022-12-04 03:41:37,454 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4976368.222315045 2022-12-04 03:41:40,003 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:41:40,129 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:41:40,229 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 5 of 10. 2022-12-04 03:41:40,254 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 2022-12-04 03:41:41,873 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] 2022-12-04 03:41:42,524 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 5.624818478739097e-17 2022-12-04 03:41:44,947 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -5025863.677728196 2022-12-04 03:41:47,530 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:41:47,652 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:41:47,752 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 6 of 10. 2022-12-04 03:41:47,777 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 2022-12-04 03:41:49,398 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] 2022-12-04 03:41:50,063 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 5.624818478739097e-17 2022-12-04 03:41:52,533 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -5001667.771511606 2022-12-04 03:41:55,163 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:41:55,308 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:41:55,414 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 7 of 10. 2022-12-04 03:41:55,440 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 2022-12-04 03:41:57,057 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] 2022-12-04 03:41:57,738 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 5.624818478739097e-17 2022-12-04 03:42:00,196 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4974631.678975182 2022-12-04 03:42:02,820 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:42:02,951 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:42:03,061 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 8 of 10. 2022-12-04 03:42:03,088 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 2022-12-04 03:42:04,719 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] 2022-12-04 03:42:05,386 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 5.624818478739097e-17 2022-12-04 03:42:07,870 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4910978.308262916 2022-12-04 03:42:10,500 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:42:10,635 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:42:10,736 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 9 of 10. 2022-12-04 03:42:10,761 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 2022-12-04 03:42:12,390 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] 2022-12-04 03:42:13,055 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 5.624818478739097e-17 2022-12-04 03:42:15,542 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4943198.202206496 2022-12-04 03:42:18,168 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:42:18,302 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:42:18,404 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing integration 10 of 10. 2022-12-04 03:42:18,432 - stpipe.Spec2Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 2022-12-04 03:42:20,068 - stpipe.Spec2Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] 2022-12-04 03:42:20,726 - stpipe.Spec2Pipeline.extract_1d - INFO - Using a Tikhonov factor of 5.624818478739097e-17 2022-12-04 03:42:23,278 - stpipe.Spec2Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -5000808.234372759 2022-12-04 03:42:25,908 - stpipe.Spec2Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:42:26,045 - stpipe.Spec2Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:42:26,303 - stpipe.Spec2Pipeline.extract_1d - INFO - Populating INT_TIMES keywords from input table. 2022-12-04 03:42:26,467 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:42:26,712 - stpipe.Spec2Pipeline.photom - INFO - Step photom running with args (<MultiSpecModel from jw01091002001_03101_00001-seg002_nis_short_calints.fits>,). 2022-12-04 03:42:26,713 - stpipe.Spec2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} 2022-12-04 03:42:26,745 - stpipe.Spec2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits 2022-12-04 03:42:26,745 - stpipe.Spec2Pipeline.photom - INFO - Using area reference file: N/A 2022-12-04 03:42:26,893 - stpipe.Spec2Pipeline.photom - INFO - Using instrument: NIRISS 2022-12-04 03:42:26,893 - stpipe.Spec2Pipeline.photom - INFO - detector: NIS 2022-12-04 03:42:26,894 - stpipe.Spec2Pipeline.photom - INFO - exp_type: NIS_SOSS 2022-12-04 03:42:26,894 - stpipe.Spec2Pipeline.photom - INFO - filter: CLEAR 2022-12-04 03:42:26,894 - stpipe.Spec2Pipeline.photom - INFO - pupil: GR700XD 2022-12-04 03:42:26,919 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,921 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,924 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,927 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,929 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,932 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,935 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,938 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,941 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,944 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,946 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,949 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,952 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,955 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,957 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,960 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,963 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,966 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,969 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,972 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,974 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,977 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,979 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,982 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,984 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,987 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,989 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,992 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,995 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:26,997 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:42:27,606 - stpipe.Spec2Pipeline.photom - INFO - Saved model in jw01091002001_03101_00001-seg002_nis_short_x1dints.fits 2022-12-04 03:42:27,606 - stpipe.Spec2Pipeline.photom - INFO - Step photom done 2022-12-04 03:42:27,606 - stpipe.Spec2Pipeline - INFO - Finished processing product /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg002_nis_short 2022-12-04 03:42:27,606 - stpipe.Spec2Pipeline - INFO - Ending calwebb_spec2 2022-12-04 03:42:27,606 - stpipe.Spec2Pipeline - INFO - Results used CRDS context: jwst_1019.pmap 2022-12-04 03:42:27,930 - stpipe.Spec2Pipeline - INFO - Saved model in jw01091002001_03101_00001-seg002_nis_short_calints.fits 2022-12-04 03:42:27,930 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline done -------------------------------Captured log setup------------------------------- INFO stpipe:pipeline.py:208 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0003.asdf INFO stpipe.Spec2Pipeline:step.py:366 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:366 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:366 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:366 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:366 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:366 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos:step.py:366 MasterBackgroundMosStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:366 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:366 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:366 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:366 FringeStep instance created. INFO stpipe.Spec2Pipeline.residual_fringe:step.py:366 ResidualFringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.wfss_contam:step.py:366 WfssContamStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:366 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:366 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:366 Extract1dStep instance created. INFO stpipe.Spec2Pipeline:step.py:430 Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg001_nis_short_rateints.fits',). INFO stpipe.Spec2Pipeline:step.py:434 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 1000}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} INFO stpipe.Spec2Pipeline:pipeline.py:358 Prefetching reference files for dataset: 'jw01091002001_03101_00001-seg001_nis_short_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap'] INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for APCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISTORTION reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for EXTRACT1D reference file is '/grp/crds/cache/references/jwst/jwst_niriss_extract1d_0003.json'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FILTEROFFSET reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0275.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECKERNEL reference file is '/grp/crds/cache/references/jwst/jwst_niriss_speckernel_0004.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECPROFILE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specprofile_0022.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECTRACE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_spectrace_0023.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVEMAP reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavemap_0022.fits'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:94 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:112 Processing product /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg001_nis_short INFO stpipe.Spec2Pipeline:calwebb_spec2.py:178 Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg001_nis_short_rateints.fits ... DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:383 Science data does not allow fringe correction. Skipping "fringe". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:430 Step assign_wcs running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_rateints.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:434 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': 'N/A', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': 'N/A', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': None, 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf', 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': None, 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf', 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:179 Applied Barycentric velocity correction: 0.9999951852589625 INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:179 Applied Barycentric velocity correction: 0.9999951852589625 INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:546 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:430 Step bkg_subtract running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_rateints.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:434 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:546 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:430 Step imprint_subtract running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_rateints.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:434 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:546 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:430 Step msa_flagging running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_rateints.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:434 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:546 Step msa_flagging done INFO stpipe.Spec2Pipeline.srctype:step.py:430 Step srctype running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_rateints.fits>,). INFO stpipe.Spec2Pipeline.srctype:step.py:434 Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'source_type': None} INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_SOSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_SOSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:62 Input SRCTYAPT = POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:62 Input SRCTYAPT = POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:97 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:97 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:step.py:1016 Saved model in jw01091002001_03101_00001-seg001_nis_short_srctype.fits INFO stpipe.Spec2Pipeline.srctype:step.py:546 Step srctype done INFO stpipe.Spec2Pipeline.flat_field:step.py:430 Step flat_field running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_srctype.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:434 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:74 Input is CubeModel of exposure type NIS_SOSS DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_niriss_flat_0275.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1793, subsize2=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1793, subsize2=256 INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:175 Extracting matching subarray from flat INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:175 Extracting matching subarray from flat DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=1792, ystop=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=1792, ystop=2048 INFO stpipe.Spec2Pipeline.flat_field:step.py:1016 Saved model in jw01091002001_03101_00001-seg001_nis_short_flat_field.fits INFO stpipe.Spec2Pipeline.flat_field:step.py:546 Step flat_field done INFO stpipe.Spec2Pipeline.straylight:step.py:430 Step straylight running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_flat_field.fits>,). INFO stpipe.Spec2Pipeline.straylight:step.py:434 Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} INFO stpipe.Spec2Pipeline.straylight:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.straylight:step.py:546 Step straylight done INFO stpipe.Spec2Pipeline.fringe:step.py:430 Step fringe running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_flat_field.fits>,). INFO stpipe.Spec2Pipeline.fringe:step.py:434 Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} INFO stpipe.Spec2Pipeline.fringe:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.fringe:step.py:546 Step fringe done INFO stpipe.Spec2Pipeline.pathloss:step.py:430 Step pathloss running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_flat_field.fits>,). INFO stpipe.Spec2Pipeline.pathloss:step.py:434 Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.pathloss:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.pathloss:step.py:546 Step pathloss done INFO stpipe.Spec2Pipeline.barshadow:step.py:430 Step barshadow running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_flat_field.fits>,). INFO stpipe.Spec2Pipeline.barshadow:step.py:434 Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.barshadow:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.barshadow:step.py:546 Step barshadow done INFO stpipe.Spec2Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_calints.fits>,). INFO stpipe.Spec2Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:149 Input is a CubeModel for a multiple integ. file INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:303 Input is a NIRISS SOSS observation, the specialized SOSS extraction (ATOCA) will be used. INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:308 Exposure is through the GR700XD + CLEAR (science). INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:321 Exposure is in the SUBSTRIP256 subarray. INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:322 Traces 1 and 2 will be modelled and decontaminated before extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:651 Input is a CubeModel containing 10 integrations. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:651 Input is a CubeModel containing 10 integrations. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 1 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 1 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:674 Solving for the transformation parameters. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:674 Solving for the transformation parameters. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 INFO stpipe.Spec2Pipeline.extract_1d:soss_solver.py:309 Measuring trace position for orders 1 and 2. INFO stpipe.Spec2Pipeline.extract_1d:soss_solver.py:309 Measuring trace position for orders 1 and 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:297 Solving for the optimal Tikhonov factor. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:297 Solving for the optimal Tikhonov factor. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 0/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 0/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 1/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 1/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 2/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 2/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 3/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 3/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 4/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 4/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 5/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 5/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 6/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 6/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 7/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 7/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 8/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 8/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 9/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 9/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2336 10/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2336 10/10 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 0/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 0/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 1/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 1/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 2/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 2/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 3/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 3/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 4/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 4/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 5/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 5/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 6/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 6/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 7/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 7/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 8/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 8/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 9/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 9/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 10/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 10/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 11/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 11/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 12/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 12/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 13/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 13/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 14/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 14/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 15/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 15/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 16/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 16/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 17/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 17/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 18/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 18/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 19/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 19/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2336 20/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2336 20/20 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4856520.214353738 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4856520.214353738 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 2 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 2 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4881822.483361602 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4881822.483361602 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 3 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 3 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4954751.67010198 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4954751.67010198 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 4 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 4 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4865483.666049339 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4865483.666049339 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 5 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 5 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4896352.250123579 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4896352.250123579 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 6 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 6 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4895215.082899148 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4895215.082899148 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 7 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 7 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4902129.7796687465 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4902129.7796687465 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 8 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 8 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4994637.73494981 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4994637.73494981 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 9 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 9 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -7797026.569674485 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -7797026.569674485 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 10 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 10 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0029, dx=-1.2938, dy=0.1985 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00286814 -1.29376627 0.19845549] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.4755876100630248e-22 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4973773.734822123 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4973773.734822123 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:791 Populating INT_TIMES keywords from input table. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:791 Populating INT_TIMES keywords from input table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3011 Number of output spectra = 30; number of spectra for each integration = 3; number of integrations = 10 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3011 Number of output spectra = 30; number of spectra for each integration = 3; number of integrations = 10 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3096 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3096 TSO data, so copying times from the INT_TIMES table. INFO stpipe.Spec2Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec2Pipeline.photom:step.py:430 Step photom running with args (<MultiSpecModel from jw01091002001_03101_00001-seg001_nis_short_calints.fits>,). INFO stpipe.Spec2Pipeline.photom:step.py:434 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} DEBUG stpipe.Spec2Pipeline.photom:photom_step.py:35 Input is MultiSpecModel INFO stpipe.Spec2Pipeline.photom:photom_step.py:55 Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits INFO stpipe.Spec2Pipeline.photom:photom_step.py:56 Using area reference file: N/A INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_SOSS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_SOSS INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: CLEAR INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: CLEAR INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: GR700XD INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: GR700XD INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:step.py:1016 Saved model in jw01091002001_03101_00001-seg001_nis_short_x1dints.fits INFO stpipe.Spec2Pipeline.photom:step.py:546 Step photom done INFO stpipe.Spec2Pipeline:calwebb_spec2.py:317 Finished processing product /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg001_nis_short INFO stpipe.Spec2Pipeline:calwebb_spec2.py:140 Ending calwebb_spec2 INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:step.py:1016 Saved model in jw01091002001_03101_00001-seg001_nis_short_calints.fits INFO stpipe.Spec2Pipeline:step.py:546 Step Spec2Pipeline done INFO stpipe:pipeline.py:208 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0003.asdf INFO stpipe.Spec2Pipeline:step.py:366 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:366 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:366 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:366 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:366 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:366 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos:step.py:366 MasterBackgroundMosStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:366 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:366 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:366 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:366 FringeStep instance created. INFO stpipe.Spec2Pipeline.residual_fringe:step.py:366 ResidualFringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.wfss_contam:step.py:366 WfssContamStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:366 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:366 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:366 Extract1dStep instance created. INFO stpipe.Spec2Pipeline:step.py:430 Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg002_nis_short_rateints.fits',). INFO stpipe.Spec2Pipeline:step.py:434 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 1000}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} INFO stpipe.Spec2Pipeline:pipeline.py:358 Prefetching reference files for dataset: 'jw01091002001_03101_00001-seg002_nis_short_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap'] INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for APCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISTORTION reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for EXTRACT1D reference file is '/grp/crds/cache/references/jwst/jwst_niriss_extract1d_0003.json'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FILTEROFFSET reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0275.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECKERNEL reference file is '/grp/crds/cache/references/jwst/jwst_niriss_speckernel_0004.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECPROFILE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specprofile_0022.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECTRACE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_spectrace_0023.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVEMAP reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavemap_0022.fits'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:94 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:112 Processing product /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg002_nis_short INFO stpipe.Spec2Pipeline:calwebb_spec2.py:178 Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg002_nis_short_rateints.fits ... DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:383 Science data does not allow fringe correction. Skipping "fringe". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:430 Step assign_wcs running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:434 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': 'N/A', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': 'N/A', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': None, 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf', 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': None, 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0002.asdf', 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:179 Applied Barycentric velocity correction: 0.9999951852589625 INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:179 Applied Barycentric velocity correction: 0.9999951852589625 INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:546 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:430 Step bkg_subtract running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:434 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:546 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:430 Step imprint_subtract running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:434 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:546 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:430 Step msa_flagging running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:434 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:546 Step msa_flagging done INFO stpipe.Spec2Pipeline.srctype:step.py:430 Step srctype running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). INFO stpipe.Spec2Pipeline.srctype:step.py:434 Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'source_type': None} INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_SOSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_SOSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:62 Input SRCTYAPT = POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:62 Input SRCTYAPT = POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:97 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:97 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:step.py:546 Step srctype done INFO stpipe.Spec2Pipeline.flat_field:step.py:430 Step flat_field running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:434 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:74 Input is CubeModel of exposure type NIS_SOSS DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_niriss_flat_0275.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1793, subsize2=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1793, subsize2=256 INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:175 Extracting matching subarray from flat INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:175 Extracting matching subarray from flat DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=1792, ystop=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=1792, ystop=2048 INFO stpipe.Spec2Pipeline.flat_field:step.py:546 Step flat_field done INFO stpipe.Spec2Pipeline.straylight:step.py:430 Step straylight running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). INFO stpipe.Spec2Pipeline.straylight:step.py:434 Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} INFO stpipe.Spec2Pipeline.straylight:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.straylight:step.py:546 Step straylight done INFO stpipe.Spec2Pipeline.fringe:step.py:430 Step fringe running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). INFO stpipe.Spec2Pipeline.fringe:step.py:434 Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0'} INFO stpipe.Spec2Pipeline.fringe:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.fringe:step.py:546 Step fringe done INFO stpipe.Spec2Pipeline.pathloss:step.py:430 Step pathloss running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). INFO stpipe.Spec2Pipeline.pathloss:step.py:434 Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.pathloss:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.pathloss:step.py:546 Step pathloss done INFO stpipe.Spec2Pipeline.barshadow:step.py:430 Step barshadow running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_rateints.fits>,). INFO stpipe.Spec2Pipeline.barshadow:step.py:434 Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.barshadow:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.barshadow:step.py:546 Step barshadow done INFO stpipe.Spec2Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_calints.fits>,). INFO stpipe.Spec2Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:149 Input is a CubeModel for a multiple integ. file INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:303 Input is a NIRISS SOSS observation, the specialized SOSS extraction (ATOCA) will be used. INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:308 Exposure is through the GR700XD + CLEAR (science). INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:321 Exposure is in the SUBSTRIP256 subarray. INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:322 Traces 1 and 2 will be modelled and decontaminated before extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:651 Input is a CubeModel containing 10 integrations. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:651 Input is a CubeModel containing 10 integrations. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 1 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 1 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:674 Solving for the transformation parameters. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:674 Solving for the transformation parameters. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 INFO stpipe.Spec2Pipeline.extract_1d:soss_solver.py:309 Measuring trace position for orders 1 and 2. INFO stpipe.Spec2Pipeline.extract_1d:soss_solver.py:309 Measuring trace position for orders 1 and 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:297 Solving for the optimal Tikhonov factor. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:297 Solving for the optimal Tikhonov factor. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 0/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 0/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 1/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 1/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 2/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 2/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 3/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 3/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 4/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 4/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 5/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 5/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 6/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 6/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 7/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 7/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 8/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 8/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 9/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 9/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2336 10/10 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2336 10/10 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 0/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 0/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 1/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 1/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 2/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 2/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 3/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 3/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 4/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 4/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 5/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 5/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 6/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 6/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 7/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 7/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 8/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 8/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 9/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 9/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 10/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 10/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 11/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 11/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 12/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 12/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 13/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 13/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 14/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 14/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 15/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 15/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 16/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 16/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 17/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 17/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 18/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 18/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 19/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2332 19/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2336 20/20 INFO stpipe.Spec2Pipeline.extract_1d:atoca_utils.py:2336 20/20 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4919328.248976819 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4919328.248976819 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 2 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 2 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4990909.4276869 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4990909.4276869 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 3 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 3 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4861946.952879176 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4861946.952879176 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 4 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 4 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4976368.222315045 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4976368.222315045 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 5 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 5 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5025863.677728196 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5025863.677728196 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 6 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 6 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5001667.771511606 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5001667.771511606 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 7 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 7 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4974631.678975182 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4974631.678975182 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 8 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 8 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4910978.308262916 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4910978.308262916 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 9 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 9 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4943198.202206496 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4943198.202206496 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 10 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:659 Processing integration 10 of 10. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2922, dy=0.1915 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00344578 -1.29222943 0.19154911] DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 5.624818478739097e-17 DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5000808.234372759 INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5000808.234372759 DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Spec2Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Spec2Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Spec2Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:791 Populating INT_TIMES keywords from input table. INFO stpipe.Spec2Pipeline.extract_1d:soss_extract.py:791 Populating INT_TIMES keywords from input table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3011 Number of output spectra = 30; number of spectra for each integration = 3; number of integrations = 10 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3011 Number of output spectra = 30; number of spectra for each integration = 3; number of integrations = 10 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3096 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3096 TSO data, so copying times from the INT_TIMES table. INFO stpipe.Spec2Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec2Pipeline.photom:step.py:430 Step photom running with args (<MultiSpecModel from jw01091002001_03101_00001-seg002_nis_short_calints.fits>,). INFO stpipe.Spec2Pipeline.photom:step.py:434 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} DEBUG stpipe.Spec2Pipeline.photom:photom_step.py:35 Input is MultiSpecModel INFO stpipe.Spec2Pipeline.photom:photom_step.py:55 Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits INFO stpipe.Spec2Pipeline.photom:photom_step.py:56 Using area reference file: N/A INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_SOSS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_SOSS INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: CLEAR INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: CLEAR INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: GR700XD INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: GR700XD INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Spec2Pipeline.photom:step.py:1016 Saved model in jw01091002001_03101_00001-seg002_nis_short_x1dints.fits INFO stpipe.Spec2Pipeline.photom:step.py:546 Step photom done INFO stpipe.Spec2Pipeline:calwebb_spec2.py:317 Finished processing product /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091002001_03101_00001-seg002_nis_short INFO stpipe.Spec2Pipeline:calwebb_spec2.py:140 Ending calwebb_spec2 INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:step.py:1016 Saved model in jw01091002001_03101_00001-seg002_nis_short_calints.fits INFO stpipe.Spec2Pipeline:step.py:546 Step Spec2Pipeline done | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[flat_field] | 2.02 | |
|
No log output captured. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[srctype] | 1.95 | |
|
No log output captured. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage2[x1dints] | 0.88 | |
|
No log output captured. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_crfints | 199.48 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-12-04 03:42:35,742 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-outlierdetectionstep_0001.asdf 2022-12-04 03:42:35,765 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created. 2022-12-04 03:42:35,766 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-12-04 03:42:35,767 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created. 2022-12-04 03:42:35,768 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-12-04 03:42:35,769 - stpipe.Tso3Pipeline.photom - INFO - PhotomStep instance created. 2022-12-04 03:42:35,770 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created. 2022-12-04 03:42:36,255 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091-o002_20220714t155100_tso3_001_asn.json',). 2022-12-04 03:42:36,259 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None, 'in_memory': False}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'min_wavelength': None, 'max_wavelength': None}}} 2022-12-04 03:42:36,494 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw01091002001_03101_00001-seg001_nis_short_calints.fits' reftypes = ['gain', 'readnoise'] 2022-12-04 03:42:36,498 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_niriss_gain_0006.fits'. 2022-12-04 03:42:36,500 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_readnoise_0005.fits'. 2022-12-04 03:42:36,501 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3... 2022-12-04 03:42:37,515 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2022-12-04 03:42:37,994 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2022-12-04 03:42:37,995 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None, 'in_memory': False} 2022-12-04 03:42:38,002 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 10 inputs 2022-12-04 03:42:38,995 - stpipe.Tso3Pipeline.outlier_detection - INFO - Flagging outliers 2022-12-04 03:42:39,034 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 47 (0.01%) 2022-12-04 03:42:39,074 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 41 (0.01%) 2022-12-04 03:42:39,113 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 31 (0.01%) 2022-12-04 03:42:39,152 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 33 (0.01%) 2022-12-04 03:42:39,193 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 40 (0.01%) 2022-12-04 03:42:39,235 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 36 (0.01%) 2022-12-04 03:42:39,276 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 40 (0.01%) 2022-12-04 03:42:39,313 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 45 (0.01%) 2022-12-04 03:42:39,357 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 60 (0.01%) 2022-12-04 03:42:39,398 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 44 (0.01%) 2022-12-04 03:42:39,418 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-12-04 03:42:39,972 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2022-12-04 03:42:40,448 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2022-12-04 03:42:40,450 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None, 'in_memory': False} 2022-12-04 03:42:40,456 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 10 inputs 2022-12-04 03:42:41,512 - stpipe.Tso3Pipeline.outlier_detection - INFO - Flagging outliers 2022-12-04 03:42:41,553 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 33 (0.01%) 2022-12-04 03:42:41,591 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 39 (0.01%) 2022-12-04 03:42:41,629 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 29 (0.01%) 2022-12-04 03:42:41,667 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 69 (0.01%) 2022-12-04 03:42:41,708 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 47 (0.01%) 2022-12-04 03:42:41,746 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 60 (0.01%) 2022-12-04 03:42:41,784 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 50 (0.01%) 2022-12-04 03:42:41,825 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 48 (0.01%) 2022-12-04 03:42:41,867 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 41 (0.01%) 2022-12-04 03:42:41,910 - stpipe.Tso3Pipeline.outlier_detection - INFO - New pixels flagged as outliers: 35 (0.01%) 2022-12-04 03:42:41,933 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-12-04 03:42:41,947 - stpipe.Tso3Pipeline - INFO - Saving crfints products with updated DQ arrays ... 2022-12-04 03:42:42,281 - stpipe.Tso3Pipeline - INFO - Saved model in jw01091002001_03101_00001-seg001_nis_short_o002_crfints.fits 2022-12-04 03:42:42,605 - stpipe.Tso3Pipeline - INFO - Saved model in jw01091002001_03101_00001-seg002_nis_short_o002_crfints.fits 2022-12-04 03:42:42,626 - stpipe.Tso3Pipeline - INFO - Extracting 1-D spectra ... 2022-12-04 03:42:43,117 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_calints.fits>,). 2022-12-04 03:42:43,118 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:42:43,128 - stpipe.Tso3Pipeline.extract_1d - INFO - Input is a NIRISS SOSS observation, the specialized SOSS extraction (ATOCA) will be used. 2022-12-04 03:42:43,128 - stpipe.Tso3Pipeline.extract_1d - INFO - Exposure is through the GR700XD + CLEAR (science). 2022-12-04 03:42:43,128 - stpipe.Tso3Pipeline.extract_1d - INFO - Exposure is in the SUBSTRIP256 subarray. 2022-12-04 03:42:43,128 - stpipe.Tso3Pipeline.extract_1d - INFO - Traces 1 and 2 will be modelled and decontaminated before extraction. 2022-12-04 03:42:43,372 - stpipe.Tso3Pipeline.extract_1d - INFO - Input is a CubeModel containing 10 integrations. 2022-12-04 03:42:43,372 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 1 of 10. 2022-12-04 03:42:43,402 - stpipe.Tso3Pipeline.extract_1d - INFO - Solving for the transformation parameters. 2022-12-04 03:42:43,719 - stpipe.Tso3Pipeline.extract_1d - INFO - Measuring trace position for orders 1 and 2. 2022-12-04 03:42:44,062 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 2022-12-04 03:42:45,685 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] 2022-12-04 03:42:46,356 - stpipe.Tso3Pipeline.extract_1d - INFO - Solving for the optimal Tikhonov factor. 2022-12-04 03:42:48,359 - stpipe.Tso3Pipeline.extract_1d - INFO - Testing factors... 2022-12-04 03:42:48,826 - stpipe.Tso3Pipeline.extract_1d - INFO - 0/10 2022-12-04 03:42:49,273 - stpipe.Tso3Pipeline.extract_1d - INFO - 1/10 2022-12-04 03:42:49,723 - stpipe.Tso3Pipeline.extract_1d - INFO - 2/10 2022-12-04 03:42:50,185 - stpipe.Tso3Pipeline.extract_1d - INFO - 3/10 2022-12-04 03:42:50,681 - stpipe.Tso3Pipeline.extract_1d - INFO - 4/10 2022-12-04 03:42:51,173 - stpipe.Tso3Pipeline.extract_1d - INFO - 5/10 2022-12-04 03:42:51,635 - stpipe.Tso3Pipeline.extract_1d - INFO - 6/10 2022-12-04 03:42:52,085 - stpipe.Tso3Pipeline.extract_1d - INFO - 7/10 2022-12-04 03:42:52,531 - stpipe.Tso3Pipeline.extract_1d - INFO - 8/10 2022-12-04 03:42:52,969 - stpipe.Tso3Pipeline.extract_1d - INFO - 9/10 2022-12-04 03:42:52,969 - stpipe.Tso3Pipeline.extract_1d - INFO - 10/10 2022-12-04 03:42:54,804 - stpipe.Tso3Pipeline.extract_1d - INFO - Testing factors... 2022-12-04 03:42:55,248 - stpipe.Tso3Pipeline.extract_1d - INFO - 0/20 2022-12-04 03:42:55,694 - stpipe.Tso3Pipeline.extract_1d - INFO - 1/20 2022-12-04 03:42:56,143 - stpipe.Tso3Pipeline.extract_1d - INFO - 2/20 2022-12-04 03:42:56,587 - stpipe.Tso3Pipeline.extract_1d - INFO - 3/20 2022-12-04 03:42:57,029 - stpipe.Tso3Pipeline.extract_1d - INFO - 4/20 2022-12-04 03:42:57,473 - stpipe.Tso3Pipeline.extract_1d - INFO - 5/20 2022-12-04 03:42:57,921 - stpipe.Tso3Pipeline.extract_1d - INFO - 6/20 2022-12-04 03:42:58,367 - stpipe.Tso3Pipeline.extract_1d - INFO - 7/20 2022-12-04 03:42:58,810 - stpipe.Tso3Pipeline.extract_1d - INFO - 8/20 2022-12-04 03:42:59,254 - stpipe.Tso3Pipeline.extract_1d - INFO - 9/20 2022-12-04 03:42:59,702 - stpipe.Tso3Pipeline.extract_1d - INFO - 10/20 2022-12-04 03:43:00,152 - stpipe.Tso3Pipeline.extract_1d - INFO - 11/20 2022-12-04 03:43:00,602 - stpipe.Tso3Pipeline.extract_1d - INFO - 12/20 2022-12-04 03:43:01,044 - stpipe.Tso3Pipeline.extract_1d - INFO - 13/20 2022-12-04 03:43:01,484 - stpipe.Tso3Pipeline.extract_1d - INFO - 14/20 2022-12-04 03:43:01,931 - stpipe.Tso3Pipeline.extract_1d - INFO - 15/20 2022-12-04 03:43:02,373 - stpipe.Tso3Pipeline.extract_1d - INFO - 16/20 2022-12-04 03:43:02,817 - stpipe.Tso3Pipeline.extract_1d - INFO - 17/20 2022-12-04 03:43:03,266 - stpipe.Tso3Pipeline.extract_1d - INFO - 18/20 2022-12-04 03:43:03,723 - stpipe.Tso3Pipeline.extract_1d - INFO - 19/20 2022-12-04 03:43:03,723 - stpipe.Tso3Pipeline.extract_1d - INFO - 20/20 2022-12-04 03:43:03,745 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.3828861059605402e-19 2022-12-04 03:43:06,219 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -5020902.616485805 2022-12-04 03:43:08,886 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:43:09,040 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:43:09,144 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 2 of 10. 2022-12-04 03:43:09,173 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 2022-12-04 03:43:10,801 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] 2022-12-04 03:43:11,437 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.3828861059605402e-19 2022-12-04 03:43:13,879 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4914686.616874834 2022-12-04 03:43:16,418 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:43:16,554 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:43:16,654 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 3 of 10. 2022-12-04 03:43:16,683 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 2022-12-04 03:43:18,357 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] 2022-12-04 03:43:18,994 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.3828861059605402e-19 2022-12-04 03:43:21,415 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -5316163.577593296 2022-12-04 03:43:23,922 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:43:24,066 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:43:24,169 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 4 of 10. 2022-12-04 03:43:24,200 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 2022-12-04 03:43:25,846 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] 2022-12-04 03:43:26,529 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.3828861059605402e-19 2022-12-04 03:43:28,976 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4911124.000447005 2022-12-04 03:43:31,453 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:43:31,590 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:43:31,689 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 5 of 10. 2022-12-04 03:43:31,714 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 2022-12-04 03:43:33,350 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] 2022-12-04 03:43:34,010 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.3828861059605402e-19 2022-12-04 03:43:36,427 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4934893.048856971 2022-12-04 03:43:38,947 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:43:39,100 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:43:39,204 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 6 of 10. 2022-12-04 03:43:39,232 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 2022-12-04 03:43:40,828 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] 2022-12-04 03:43:41,481 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.3828861059605402e-19 2022-12-04 03:43:43,875 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -5323502.47519156 2022-12-04 03:43:46,397 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:43:46,535 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:43:46,636 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 7 of 10. 2022-12-04 03:43:46,664 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 2022-12-04 03:43:48,285 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] 2022-12-04 03:43:48,933 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.3828861059605402e-19 2022-12-04 03:43:51,293 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -7641210.778631106 2022-12-04 03:43:53,779 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:43:53,913 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:43:54,009 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 8 of 10. 2022-12-04 03:43:54,040 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 2022-12-04 03:43:55,686 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] 2022-12-04 03:43:56,300 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.3828861059605402e-19 2022-12-04 03:43:58,642 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4888394.519190181 2022-12-04 03:44:01,100 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:44:01,210 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:44:01,302 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 9 of 10. 2022-12-04 03:44:01,324 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 2022-12-04 03:44:02,904 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] 2022-12-04 03:44:03,522 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.3828861059605402e-19 2022-12-04 03:44:05,866 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -5051140.650470897 2022-12-04 03:44:08,345 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:44:08,456 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:44:08,548 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 10 of 10. 2022-12-04 03:44:08,570 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 2022-12-04 03:44:10,159 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] 2022-12-04 03:44:10,766 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.3828861059605402e-19 2022-12-04 03:44:13,124 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -5000566.687923639 2022-12-04 03:44:15,586 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:44:15,701 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:44:15,941 - stpipe.Tso3Pipeline.extract_1d - INFO - Populating INT_TIMES keywords from input table. 2022-12-04 03:44:16,101 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:44:16,728 - stpipe.Tso3Pipeline.photom - INFO - Step photom running with args (<MultiSpecModel from jw01091002001_03101_00001-seg001_nis_short_calints.fits>,). 2022-12-04 03:44:16,729 - stpipe.Tso3Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} 2022-12-04 03:44:16,826 - stpipe.Tso3Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits 2022-12-04 03:44:16,826 - stpipe.Tso3Pipeline.photom - INFO - Using area reference file: N/A 2022-12-04 03:44:16,984 - stpipe.Tso3Pipeline.photom - INFO - Using instrument: NIRISS 2022-12-04 03:44:16,985 - stpipe.Tso3Pipeline.photom - INFO - detector: NIS 2022-12-04 03:44:16,985 - stpipe.Tso3Pipeline.photom - INFO - exp_type: NIS_SOSS 2022-12-04 03:44:16,985 - stpipe.Tso3Pipeline.photom - INFO - filter: CLEAR 2022-12-04 03:44:16,985 - stpipe.Tso3Pipeline.photom - INFO - pupil: GR700XD 2022-12-04 03:44:17,012 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,015 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,018 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,021 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,024 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,027 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,030 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,033 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,036 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,039 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,042 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,045 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,047 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,050 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,054 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,057 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,061 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,064 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,068 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,071 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,074 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,077 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,080 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,083 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,086 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,089 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,092 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,096 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,099 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,102 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:44:17,109 - stpipe.Tso3Pipeline.photom - INFO - Step photom done 2022-12-04 03:44:17,168 - stpipe.Tso3Pipeline - INFO - Performing white-light photometry ... 2022-12-04 03:44:17,532 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light running with args (<MultiSpecModel from jw01091002001_03101_00001-seg001_nis_short_calints.fits>,). 2022-12-04 03:44:17,533 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'min_wavelength': None, 'max_wavelength': None} 2022-12-04 03:44:17,547 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light done 2022-12-04 03:44:17,547 - stpipe.Tso3Pipeline - INFO - Extracting 1-D spectra ... 2022-12-04 03:44:17,881 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_calints.fits>,). 2022-12-04 03:44:17,883 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'extract_1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:44:17,893 - stpipe.Tso3Pipeline.extract_1d - INFO - Input is a NIRISS SOSS observation, the specialized SOSS extraction (ATOCA) will be used. 2022-12-04 03:44:17,893 - stpipe.Tso3Pipeline.extract_1d - INFO - Exposure is through the GR700XD + CLEAR (science). 2022-12-04 03:44:17,893 - stpipe.Tso3Pipeline.extract_1d - INFO - Exposure is in the SUBSTRIP256 subarray. 2022-12-04 03:44:17,893 - stpipe.Tso3Pipeline.extract_1d - INFO - Traces 1 and 2 will be modelled and decontaminated before extraction. 2022-12-04 03:44:18,139 - stpipe.Tso3Pipeline.extract_1d - INFO - Input is a CubeModel containing 10 integrations. 2022-12-04 03:44:18,139 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 1 of 10. 2022-12-04 03:44:18,171 - stpipe.Tso3Pipeline.extract_1d - INFO - Solving for the transformation parameters. 2022-12-04 03:44:18,515 - stpipe.Tso3Pipeline.extract_1d - INFO - Measuring trace position for orders 1 and 2. 2022-12-04 03:44:18,871 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 2022-12-04 03:44:20,564 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] 2022-12-04 03:44:21,220 - stpipe.Tso3Pipeline.extract_1d - INFO - Solving for the optimal Tikhonov factor. 2022-12-04 03:44:23,280 - stpipe.Tso3Pipeline.extract_1d - INFO - Testing factors... 2022-12-04 03:44:23,748 - stpipe.Tso3Pipeline.extract_1d - INFO - 0/10 2022-12-04 03:44:24,218 - stpipe.Tso3Pipeline.extract_1d - INFO - 1/10 2022-12-04 03:44:24,706 - stpipe.Tso3Pipeline.extract_1d - INFO - 2/10 2022-12-04 03:44:25,198 - stpipe.Tso3Pipeline.extract_1d - INFO - 3/10 2022-12-04 03:44:25,660 - stpipe.Tso3Pipeline.extract_1d - INFO - 4/10 2022-12-04 03:44:26,124 - stpipe.Tso3Pipeline.extract_1d - INFO - 5/10 2022-12-04 03:44:26,628 - stpipe.Tso3Pipeline.extract_1d - INFO - 6/10 2022-12-04 03:44:27,126 - stpipe.Tso3Pipeline.extract_1d - INFO - 7/10 2022-12-04 03:44:27,613 - stpipe.Tso3Pipeline.extract_1d - INFO - 8/10 2022-12-04 03:44:28,089 - stpipe.Tso3Pipeline.extract_1d - INFO - 9/10 2022-12-04 03:44:28,089 - stpipe.Tso3Pipeline.extract_1d - INFO - 10/10 2022-12-04 03:44:29,942 - stpipe.Tso3Pipeline.extract_1d - INFO - Testing factors... 2022-12-04 03:44:30,390 - stpipe.Tso3Pipeline.extract_1d - INFO - 0/20 2022-12-04 03:44:30,837 - stpipe.Tso3Pipeline.extract_1d - INFO - 1/20 2022-12-04 03:44:31,284 - stpipe.Tso3Pipeline.extract_1d - INFO - 2/20 2022-12-04 03:44:31,740 - stpipe.Tso3Pipeline.extract_1d - INFO - 3/20 2022-12-04 03:44:32,191 - stpipe.Tso3Pipeline.extract_1d - INFO - 4/20 2022-12-04 03:44:32,637 - stpipe.Tso3Pipeline.extract_1d - INFO - 5/20 2022-12-04 03:44:33,084 - stpipe.Tso3Pipeline.extract_1d - INFO - 6/20 2022-12-04 03:44:33,551 - stpipe.Tso3Pipeline.extract_1d - INFO - 7/20 2022-12-04 03:44:34,000 - stpipe.Tso3Pipeline.extract_1d - INFO - 8/20 2022-12-04 03:44:34,443 - stpipe.Tso3Pipeline.extract_1d - INFO - 9/20 2022-12-04 03:44:34,889 - stpipe.Tso3Pipeline.extract_1d - INFO - 10/20 2022-12-04 03:44:35,330 - stpipe.Tso3Pipeline.extract_1d - INFO - 11/20 2022-12-04 03:44:35,773 - stpipe.Tso3Pipeline.extract_1d - INFO - 12/20 2022-12-04 03:44:36,216 - stpipe.Tso3Pipeline.extract_1d - INFO - 13/20 2022-12-04 03:44:36,662 - stpipe.Tso3Pipeline.extract_1d - INFO - 14/20 2022-12-04 03:44:37,113 - stpipe.Tso3Pipeline.extract_1d - INFO - 15/20 2022-12-04 03:44:37,559 - stpipe.Tso3Pipeline.extract_1d - INFO - 16/20 2022-12-04 03:44:38,016 - stpipe.Tso3Pipeline.extract_1d - INFO - 17/20 2022-12-04 03:44:38,458 - stpipe.Tso3Pipeline.extract_1d - INFO - 18/20 2022-12-04 03:44:38,900 - stpipe.Tso3Pipeline.extract_1d - INFO - 19/20 2022-12-04 03:44:38,901 - stpipe.Tso3Pipeline.extract_1d - INFO - 20/20 2022-12-04 03:44:38,928 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.9074343497446194e-22 2022-12-04 03:44:41,313 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4915879.111859074 2022-12-04 03:44:43,780 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:44:43,892 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:44:43,996 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 2 of 10. 2022-12-04 03:44:44,022 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 2022-12-04 03:44:45,606 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] 2022-12-04 03:44:46,278 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.9074343497446194e-22 2022-12-04 03:44:48,758 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -5114297.430587791 2022-12-04 03:44:51,521 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:44:51,636 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:44:51,725 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 3 of 10. 2022-12-04 03:44:51,750 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 2022-12-04 03:44:53,339 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] 2022-12-04 03:44:54,011 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.9074343497446194e-22 2022-12-04 03:44:56,440 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -6002490.91051864 2022-12-04 03:44:59,173 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:44:59,298 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:44:59,397 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 4 of 10. 2022-12-04 03:44:59,422 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 2022-12-04 03:45:01,012 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] 2022-12-04 03:45:01,638 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.9074343497446194e-22 2022-12-04 03:45:03,999 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -5006878.58728859 2022-12-04 03:45:06,479 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:45:06,604 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:45:06,698 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 5 of 10. 2022-12-04 03:45:06,721 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 2022-12-04 03:45:08,303 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] 2022-12-04 03:45:08,935 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.9074343497446194e-22 2022-12-04 03:45:11,321 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4952653.480802476 2022-12-04 03:45:13,810 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:45:13,923 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:45:14,017 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 6 of 10. 2022-12-04 03:45:14,040 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 2022-12-04 03:45:15,624 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] 2022-12-04 03:45:16,241 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.9074343497446194e-22 2022-12-04 03:45:18,607 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4997798.275326382 2022-12-04 03:45:21,102 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:45:21,215 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:45:21,306 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 7 of 10. 2022-12-04 03:45:21,328 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 2022-12-04 03:45:22,942 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] 2022-12-04 03:45:23,581 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.9074343497446194e-22 2022-12-04 03:45:25,997 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4989093.227710614 2022-12-04 03:45:28,477 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:45:28,599 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:45:28,691 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 8 of 10. 2022-12-04 03:45:28,716 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 2022-12-04 03:45:30,314 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] 2022-12-04 03:45:30,932 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.9074343497446194e-22 2022-12-04 03:45:33,325 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4911971.280906247 2022-12-04 03:45:35,855 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:45:35,968 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:45:36,061 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 9 of 10. 2022-12-04 03:45:36,086 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 2022-12-04 03:45:37,671 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] 2022-12-04 03:45:38,292 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.9074343497446194e-22 2022-12-04 03:45:40,660 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4963218.285915805 2022-12-04 03:45:43,138 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:45:43,250 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:45:43,337 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing integration 10 of 10. 2022-12-04 03:45:43,358 - stpipe.Tso3Pipeline.extract_1d - INFO - Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 2022-12-04 03:45:44,940 - stpipe.Tso3Pipeline.extract_1d - INFO - Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] 2022-12-04 03:45:45,554 - stpipe.Tso3Pipeline.extract_1d - INFO - Using a Tikhonov factor of 1.9074343497446194e-22 2022-12-04 03:45:47,888 - stpipe.Tso3Pipeline.extract_1d - INFO - Optimal solution has a log-likelihood of -4980235.4848422725 2022-12-04 03:45:50,374 - stpipe.Tso3Pipeline.extract_1d - INFO - Performing the decontaminated box extraction. 2022-12-04 03:45:50,491 - stpipe.Tso3Pipeline.extract_1d - WARNING - Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. 2022-12-04 03:45:50,699 - stpipe.Tso3Pipeline.extract_1d - INFO - Populating INT_TIMES keywords from input table. 2022-12-04 03:45:50,859 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:45:51,362 - stpipe.Tso3Pipeline.photom - INFO - Step photom running with args (<MultiSpecModel from jw01091002001_03101_00001-seg002_nis_short_calints.fits>,). 2022-12-04 03:45:51,363 - stpipe.Tso3Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} 2022-12-04 03:45:51,394 - stpipe.Tso3Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits 2022-12-04 03:45:51,394 - stpipe.Tso3Pipeline.photom - INFO - Using area reference file: N/A 2022-12-04 03:45:51,537 - stpipe.Tso3Pipeline.photom - INFO - Using instrument: NIRISS 2022-12-04 03:45:51,538 - stpipe.Tso3Pipeline.photom - INFO - detector: NIS 2022-12-04 03:45:51,538 - stpipe.Tso3Pipeline.photom - INFO - exp_type: NIS_SOSS 2022-12-04 03:45:51,538 - stpipe.Tso3Pipeline.photom - INFO - filter: CLEAR 2022-12-04 03:45:51,538 - stpipe.Tso3Pipeline.photom - INFO - pupil: GR700XD 2022-12-04 03:45:51,562 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,565 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,567 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,570 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,572 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,575 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,578 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,580 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,583 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,585 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,588 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,590 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,593 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,595 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,598 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,601 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,603 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,606 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,608 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,611 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,613 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,616 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,618 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,621 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,624 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,626 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,629 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,631 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,634 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,636 - stpipe.Tso3Pipeline.photom - INFO - PHOTMJSR value: 5.27495e-11 2022-12-04 03:45:51,643 - stpipe.Tso3Pipeline.photom - INFO - Step photom done 2022-12-04 03:45:51,698 - stpipe.Tso3Pipeline - INFO - Performing white-light photometry ... 2022-12-04 03:45:51,977 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light running with args (<MultiSpecModel from jw01091002001_03101_00001-seg002_nis_short_calints.fits>,). 2022-12-04 03:45:51,978 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'min_wavelength': None, 'max_wavelength': None} 2022-12-04 03:45:51,991 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light done 2022-12-04 03:45:53,272 - stpipe.Tso3Pipeline - INFO - Saved model in jw01091-o002_t001_niriss_clear-gr700xd-substrip256_x1dints.fits 2022-12-04 03:45:53,273 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog jw01091-o002_t001_niriss_clear-gr700xd-substrip256_whtlt.ecsv 2022-12-04 03:45:53,277 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done -------------------------------Captured log setup------------------------------- INFO stpipe:step.py:871 PARS-OUTLIERDETECTIONSTEP parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-outlierdetectionstep_0001.asdf INFO stpipe.Tso3Pipeline:step.py:366 Tso3Pipeline instance created. INFO stpipe.Tso3Pipeline.outlier_detection:step.py:366 OutlierDetectionStep instance created. INFO stpipe.Tso3Pipeline.tso_photometry:step.py:366 TSOPhotometryStep instance created. INFO stpipe.Tso3Pipeline.extract_1d:step.py:366 Extract1dStep instance created. INFO stpipe.Tso3Pipeline.photom:step.py:366 PhotomStep instance created. INFO stpipe.Tso3Pipeline.white_light:step.py:366 WhiteLightStep instance created. INFO stpipe.Tso3Pipeline:step.py:430 Step Tso3Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0/jw01091-o002_20220714t155100_tso3_001_asn.json',). INFO stpipe.Tso3Pipeline:step.py:434 Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None, 'in_memory': False}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'min_wavelength': None, 'max_wavelength': None}}} INFO stpipe.Tso3Pipeline:pipeline.py:358 Prefetching reference files for dataset: 'jw01091002001_03101_00001-seg001_nis_short_calints.fits' reftypes = ['gain', 'readnoise'] INFO stpipe.Tso3Pipeline:pipeline.py:366 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_niriss_gain_0006.fits'. INFO stpipe.Tso3Pipeline:pipeline.py:366 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_readnoise_0005.fits'. INFO stpipe.Tso3Pipeline:calwebb_tso3.py:61 Starting calwebb_tso3... INFO stpipe.Tso3Pipeline:calwebb_tso3.py:101 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:430 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:434 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None, 'in_memory': False} INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:194 Performing outlier detection on 10 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:158 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6171417236328125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6171417236328125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:372 Flagging outliers INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:372 Flagging outliers INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 47 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 47 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 41 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 41 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 31 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 31 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 33 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 33 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 40 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 40 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 36 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 36 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 40 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 40 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 45 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 45 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 60 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 60 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 44 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 44 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:step.py:546 Step outlier_detection done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:101 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:430 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:434 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None, 'in_memory': False} INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:194 Performing outlier detection on 10 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:158 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.40478515625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.40478515625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 2.3899078369140625 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.617523193359375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.617523193359375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:292 Percentage of pixels with low weight: 5.6140899658203125 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:372 Flagging outliers INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:372 Flagging outliers INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 33 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 33 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 39 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 39 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 29 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 29 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 69 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 69 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 47 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 47 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 60 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 60 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 50 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 50 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 48 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 48 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 41 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 41 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 35 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:472 New pixels flagged as outliers: 35 (0.01%) INFO stpipe.Tso3Pipeline.outlier_detection:step.py:546 Step outlier_detection done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:121 Saving crfints products with updated DQ arrays ... INFO stpipe.Tso3Pipeline:step.py:1016 Saved model in jw01091002001_03101_00001-seg001_nis_short_o002_crfints.fits INFO stpipe.Tso3Pipeline:step.py:1016 Saved model in jw01091002001_03101_00001-seg002_nis_short_o002_crfints.fits INFO stpipe.Tso3Pipeline:calwebb_tso3.py:166 Extracting 1-D spectra ... INFO stpipe.Tso3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg001_nis_short_calints.fits>,). INFO stpipe.Tso3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:149 Input is a CubeModel for a multiple integ. file INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:303 Input is a NIRISS SOSS observation, the specialized SOSS extraction (ATOCA) will be used. INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:308 Exposure is through the GR700XD + CLEAR (science). INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:321 Exposure is in the SUBSTRIP256 subarray. INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:322 Traces 1 and 2 will be modelled and decontaminated before extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:651 Input is a CubeModel containing 10 integrations. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:651 Input is a CubeModel containing 10 integrations. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 1 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 1 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:674 Solving for the transformation parameters. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:674 Solving for the transformation parameters. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 INFO stpipe.Tso3Pipeline.extract_1d:soss_solver.py:309 Measuring trace position for orders 1 and 2. INFO stpipe.Tso3Pipeline.extract_1d:soss_solver.py:309 Measuring trace position for orders 1 and 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:297 Solving for the optimal Tikhonov factor. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:297 Solving for the optimal Tikhonov factor. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 0/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 0/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 1/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 1/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 2/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 2/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 3/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 3/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 4/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 4/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 5/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 5/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 6/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 6/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 7/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 7/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 8/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 8/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 9/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 9/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2336 10/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2336 10/10 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 0/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 0/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 1/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 1/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 2/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 2/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 3/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 3/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 4/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 4/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 5/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 5/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 6/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 6/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 7/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 7/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 8/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 8/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 9/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 9/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 10/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 10/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 11/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 11/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 12/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 12/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 13/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 13/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 14/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 14/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 15/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 15/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 16/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 16/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 17/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 17/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 18/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 18/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 19/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 19/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2336 20/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2336 20/20 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5020902.616485805 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5020902.616485805 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 2 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 2 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4914686.616874834 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4914686.616874834 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 3 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 3 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5316163.577593296 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5316163.577593296 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 4 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 4 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4911124.000447005 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4911124.000447005 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 5 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 5 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4934893.048856971 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4934893.048856971 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 6 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 6 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5323502.47519156 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5323502.47519156 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 7 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 7 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -7641210.778631106 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -7641210.778631106 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 8 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 8 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4888394.519190181 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4888394.519190181 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 9 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 9 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5051140.650470897 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5051140.650470897 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 10 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 10 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0031, dx=-1.2812, dy=0.1990 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00310155 -1.28118581 0.19902613] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.3828861059605402e-19 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5000566.687923639 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5000566.687923639 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:791 Populating INT_TIMES keywords from input table. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:791 Populating INT_TIMES keywords from input table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3011 Number of output spectra = 30; number of spectra for each integration = 3; number of integrations = 10 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3011 Number of output spectra = 30; number of spectra for each integration = 3; number of integrations = 10 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3096 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3096 TSO data, so copying times from the INT_TIMES table. INFO stpipe.Tso3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Tso3Pipeline.photom:step.py:430 Step photom running with args (<MultiSpecModel from jw01091002001_03101_00001-seg001_nis_short_calints.fits>,). INFO stpipe.Tso3Pipeline.photom:step.py:434 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} DEBUG stpipe.Tso3Pipeline.photom:photom_step.py:35 Input is MultiSpecModel INFO stpipe.Tso3Pipeline.photom:photom_step.py:55 Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits INFO stpipe.Tso3Pipeline.photom:photom_step.py:56 Using area reference file: N/A INFO stpipe.Tso3Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Tso3Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Tso3Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Tso3Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Tso3Pipeline.photom:photom.py:146 exp_type: NIS_SOSS INFO stpipe.Tso3Pipeline.photom:photom.py:146 exp_type: NIS_SOSS INFO stpipe.Tso3Pipeline.photom:photom.py:148 filter: CLEAR INFO stpipe.Tso3Pipeline.photom:photom.py:148 filter: CLEAR INFO stpipe.Tso3Pipeline.photom:photom.py:150 pupil: GR700XD INFO stpipe.Tso3Pipeline.photom:photom.py:150 pupil: GR700XD INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:step.py:546 Step photom done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:182 Performing white-light photometry ... INFO stpipe.Tso3Pipeline.white_light:step.py:430 Step white_light running with args (<MultiSpecModel from jw01091002001_03101_00001-seg001_nis_short_calints.fits>,). INFO stpipe.Tso3Pipeline.white_light:step.py:434 Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'min_wavelength': None, 'max_wavelength': None} DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 30, sporders = [1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3], ntables_order = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 30, sporders = [1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3], ntables_order = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. INFO stpipe.Tso3Pipeline.white_light:step.py:546 Step white_light done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:166 Extracting 1-D spectra ... INFO stpipe.Tso3Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<CubeModel(10, 256, 2048) from jw01091002001_03101_00001-seg002_nis_short_calints.fits>,). INFO stpipe.Tso3Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'extract_1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:149 Input is a CubeModel for a multiple integ. file INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:303 Input is a NIRISS SOSS observation, the specialized SOSS extraction (ATOCA) will be used. INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:308 Exposure is through the GR700XD + CLEAR (science). INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:321 Exposure is in the SUBSTRIP256 subarray. INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:322 Traces 1 and 2 will be modelled and decontaminated before extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:651 Input is a CubeModel containing 10 integrations. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:651 Input is a CubeModel containing 10 integrations. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 1 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 1 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:674 Solving for the transformation parameters. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:674 Solving for the transformation parameters. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 INFO stpipe.Tso3Pipeline.extract_1d:soss_solver.py:309 Measuring trace position for orders 1 and 2. INFO stpipe.Tso3Pipeline.extract_1d:soss_solver.py:309 Measuring trace position for orders 1 and 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:174 Data dimensions: DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_utils.py:175 dimx=2048, dimy=256, xos=1, yos=1, xnative=2048, ynative=256 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:297 Solving for the optimal Tikhonov factor. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:297 Solving for the optimal Tikhonov factor. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 0/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 0/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 1/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 1/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 2/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 2/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 3/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 3/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 4/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 4/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 5/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 5/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 6/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 6/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 7/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 7/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 8/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 8/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 9/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 9/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2336 10/10 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2336 10/10 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2307 Testing factors... INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 0/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 0/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 1/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 1/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 2/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 2/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 3/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 3/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 4/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 4/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 5/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 5/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 6/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 6/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 7/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 7/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 8/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 8/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 9/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 9/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 10/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 10/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 11/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 11/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 12/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 12/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 13/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 13/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 14/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 14/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 15/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 15/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 16/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 16/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 17/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 17/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 18/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 18/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 19/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2332 19/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2336 20/20 INFO stpipe.Tso3Pipeline.extract_1d:atoca_utils.py:2336 20/20 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4915879.111859074 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4915879.111859074 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 2 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 2 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5114297.430587791 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5114297.430587791 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 3 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 3 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -6002490.91051864 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -6002490.91051864 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 4 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 4 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5006878.58728859 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -5006878.58728859 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 5 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 5 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4952653.480802476 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4952653.480802476 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 6 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 6 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4997798.275326382 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4997798.275326382 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 7 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 7 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4989093.227710614 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4989093.227710614 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 8 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 8 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4911971.280906247 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4911971.280906247 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 9 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 9 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4963218.285915805 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4963218.285915805 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 10 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:659 Processing integration 10 of 10. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:691 Measured to Reference trace position transform: theta=0.0034, dx=-1.2910, dy=0.1916 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:287 Extracting using transformation parameters [ 0.00343147 -1.2909796 0.19163993] DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:318 Using a Tikhonov factor of 1.9074343497446194e-22 DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4980235.4848422725 INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:326 Optimal solution has a log-likelihood of -4980235.4848422725 DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:335 Building the model image of Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1656 Computing weights and k. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1588 Computing lowest and highest indices of wave_grid. DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1762 n_k = 3 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1789 n_k = 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). DEBUG stpipe.Tso3Pipeline.extract_1d:atoca.py:1800 n_k > 4 in get_w(). INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:420 Performing the decontaminated box extraction. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 1. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 1 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 1 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 2. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 2 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:449 Bad pixels in Order 2 are replaced with trace model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:427 Extracting Order 3. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 1 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. DEBUG stpipe.Tso3Pipeline.extract_1d:soss_extract.py:437 Decontaminating Order 3 from Order 2 using model. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. WARNING stpipe.Tso3Pipeline.extract_1d:soss_extract.py:463 Bad pixels in Order 3 will be masked instead of modeled: trace model unavailable. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:791 Populating INT_TIMES keywords from input table. INFO stpipe.Tso3Pipeline.extract_1d:soss_extract.py:791 Populating INT_TIMES keywords from input table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3011 Number of output spectra = 30; number of spectra for each integration = 3; number of integrations = 10 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3011 Number of output spectra = 30; number of spectra for each integration = 3; number of integrations = 10 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3096 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3096 TSO data, so copying times from the INT_TIMES table. INFO stpipe.Tso3Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Tso3Pipeline.photom:step.py:430 Step photom running with args (<MultiSpecModel from jw01091002001_03101_00001-seg002_nis_short_calints.fits>,). INFO stpipe.Tso3Pipeline.photom:step.py:434 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'inverse': False, 'source_type': None} DEBUG stpipe.Tso3Pipeline.photom:photom_step.py:35 Input is MultiSpecModel INFO stpipe.Tso3Pipeline.photom:photom_step.py:55 Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0034.fits INFO stpipe.Tso3Pipeline.photom:photom_step.py:56 Using area reference file: N/A INFO stpipe.Tso3Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Tso3Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Tso3Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Tso3Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Tso3Pipeline.photom:photom.py:146 exp_type: NIS_SOSS INFO stpipe.Tso3Pipeline.photom:photom.py:146 exp_type: NIS_SOSS INFO stpipe.Tso3Pipeline.photom:photom.py:148 filter: CLEAR INFO stpipe.Tso3Pipeline.photom:photom.py:148 filter: CLEAR INFO stpipe.Tso3Pipeline.photom:photom.py:150 pupil: GR700XD INFO stpipe.Tso3Pipeline.photom:photom.py:150 pupil: GR700XD INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:photom.py:719 PHOTMJSR value: 5.27495e-11 INFO stpipe.Tso3Pipeline.photom:step.py:546 Step photom done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:182 Performing white-light photometry ... INFO stpipe.Tso3Pipeline.white_light:step.py:430 Step white_light running with args (<MultiSpecModel from jw01091002001_03101_00001-seg002_nis_short_calints.fits>,). INFO stpipe.Tso3Pipeline.white_light:step.py:434 Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_soss_rtdata_module0', 'min_wavelength': None, 'max_wavelength': None} DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 30, sporders = [1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3], ntables_order = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 30, sporders = [1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3], ntables_order = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. INFO stpipe.Tso3Pipeline.white_light:step.py:546 Step white_light done INFO stpipe.Tso3Pipeline:step.py:1016 Saved model in jw01091-o002_t001_niriss_clear-gr700xd-substrip256_x1dints.fits INFO stpipe.Tso3Pipeline:calwebb_tso3.py:204 Writing Level 3 photometry catalog jw01091-o002_t001_niriss_clear-gr700xd-substrip256_whtlt.ecsv INFO stpipe.Tso3Pipeline:step.py:546 Step Tso3Pipeline done | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_x1dints | 1.52 | |
|
No log output captured. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_soss.py::test_niriss_soss_stage3_whtlt | 0.12 | |
|
No log output captured. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_niriss_wfss.py::test_nis_wfss_spec2[assign_wcs] | 149.48 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-12-04 03:45:59,767 - CRDS - ERROR - Error determining best reference for 'pars-residualfringestep' = Unknown reference type 'pars-residualfringestep' 2022-12-04 03:45:59,774 - stpipe - INFO - PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0005.asdf 2022-12-04 03:45:59,810 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2022-12-04 03:45:59,811 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-12-04 03:45:59,812 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-12-04 03:45:59,813 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2022-12-04 03:45:59,813 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2022-12-04 03:45:59,814 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2022-12-04 03:45:59,816 - stpipe.Spec2Pipeline.master_background_mos - INFO - MasterBackgroundMosStep instance created. 2022-12-04 03:45:59,817 - stpipe.Spec2Pipeline.master_background_mos.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:45:59,818 - stpipe.Spec2Pipeline.master_background_mos.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:45:59,819 - stpipe.Spec2Pipeline.master_background_mos.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:45:59,819 - stpipe.Spec2Pipeline.master_background_mos.photom - INFO - PhotomStep instance created. 2022-12-04 03:45:59,820 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2022-12-04 03:45:59,821 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:45:59,821 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2022-12-04 03:45:59,822 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2022-12-04 03:45:59,823 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2022-12-04 03:45:59,824 - stpipe.Spec2Pipeline.residual_fringe - INFO - ResidualFringeStep instance created. 2022-12-04 03:45:59,824 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:45:59,825 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:45:59,826 - stpipe.Spec2Pipeline.wfss_contam - INFO - WfssContamStep instance created. 2022-12-04 03:45:59,826 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2022-12-04 03:45:59,828 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2022-12-04 03:45:59,829 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2022-12-04 03:45:59,830 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-12-04 03:46:00,287 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec2_001_asn.json',). 2022-12-04 03:46:00,300 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} 2022-12-04 03:46:00,357 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw01324001001_03101_00001_nis_rate.fits' reftypes = ['apcorr', 'area', 'barshadow', 'camera', 'collimator', 'cubepar', 'dflat', 'disperser', 'distortion', 'drizpars', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'mrsxartcorr', 'msa', 'msaoper', 'ote', 'pathloss', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap', 'wfssbkg'] 2022-12-04 03:46:00,368 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. 2022-12-04 03:46:00,370 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2022-12-04 03:46:00,370 - stpipe.Spec2Pipeline - INFO - Prefetch for BARSHADOW reference file is 'N/A'. 2022-12-04 03:46:00,370 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-12-04 03:46:00,370 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-12-04 03:46:00,370 - stpipe.Spec2Pipeline - INFO - Prefetch for CUBEPAR reference file is 'N/A'. 2022-12-04 03:46:00,370 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-12-04 03:46:00,370 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-12-04 03:46:00,370 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf'. 2022-12-04 03:46:00,372 - stpipe.Spec2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. 2022-12-04 03:46:00,373 - stpipe.Spec2Pipeline - INFO - Prefetch for EXTRACT1D reference file is 'N/A'. 2022-12-04 03:46:00,373 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-12-04 03:46:00,373 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'N/A'. 2022-12-04 03:46:00,373 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0269.fits'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for MRSXARTCORR reference file is 'N/A'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for MSAOPER reference file is 'N/A'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for PATHLOSS reference file is 'N/A'. 2022-12-04 03:46:00,375 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. 2022-12-04 03:46:00,378 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-12-04 03:46:00,378 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-12-04 03:46:00,378 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECKERNEL reference file is 'N/A'. 2022-12-04 03:46:00,378 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECPROFILE reference file is 'N/A'. 2022-12-04 03:46:00,378 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECTRACE reference file is 'N/A'. 2022-12-04 03:46:00,378 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf'. 2022-12-04 03:46:00,381 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2022-12-04 03:46:00,381 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf'. 2022-12-04 03:46:00,383 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVEMAP reference file is 'N/A'. 2022-12-04 03:46:00,383 - stpipe.Spec2Pipeline - INFO - Prefetch for WFSSBKG reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0019.fits'. 2022-12-04 03:46:00,384 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2022-12-04 03:46:00,391 - stpipe.Spec2Pipeline - INFO - Processing product jw01324001001_03101_00001_nis 2022-12-04 03:46:00,391 - stpipe.Spec2Pipeline - INFO - Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_rate.fits ... 2022-12-04 03:46:00,428 - stpipe.Spec2Pipeline - INFO - Using sourcecat file jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:46:00,429 - stpipe.Spec2Pipeline - INFO - Using segmentation map jw01324-o001_t001_niriss_clear-f115w_segm.fits 2022-12-04 03:46:00,430 - stpipe.Spec2Pipeline - INFO - Using direct image jw01324-o001_t001_niriss_clear-f115w_i2d.fits 2022-12-04 03:46:00,774 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_rate.fits>,). 2022-12-04 03:46:00,775 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-12-04 03:46:01,103 - stpipe.Spec2Pipeline.assign_wcs - INFO - Added Barycentric velocity correction: 1.0000819955764924 2022-12-04 03:46:01,360 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-12-04 03:46:01,635 - stpipe.Spec2Pipeline.assign_wcs - INFO - Saved model in jw01324001001_03101_00001_nis_assign_wcs.fits 2022-12-04 03:46:01,635 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-12-04 03:46:02,031 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_assign_wcs.fits>, []). 2022-12-04 03:46:02,032 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'bsub', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} 2022-12-04 03:46:02,056 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Using WFSSBKG reference file /grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0019.fits 2022-12-04 03:46:02,056 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Using WavelengthRange reference file /grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf 2022-12-04 03:46:03,526 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:46:03,811 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 1 order: 1 2022-12-04 03:46:03,822 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 2 order: 1 2022-12-04 03:46:03,831 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 3 order: 1 2022-12-04 03:46:03,841 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 4 order: 1 2022-12-04 03:46:03,851 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 5 order: 1 2022-12-04 03:46:03,860 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 6 order: 1 2022-12-04 03:46:03,870 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 7 order: 1 2022-12-04 03:46:03,880 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 8 order: 1 2022-12-04 03:46:03,890 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 9 order: 1 2022-12-04 03:46:03,899 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 10 order: 1 2022-12-04 03:46:03,909 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 11 order: 1 2022-12-04 03:46:03,918 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 12 order: 1 2022-12-04 03:46:03,928 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 13 order: 1 2022-12-04 03:46:03,937 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 14 order: 1 2022-12-04 03:46:03,946 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 15 order: 1 2022-12-04 03:46:03,956 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 16 order: 1 2022-12-04 03:46:03,965 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 17 order: 1 2022-12-04 03:46:03,975 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 18 order: 1 2022-12-04 03:46:03,984 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 19 order: 1 2022-12-04 03:46:04,003 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 21 order: 1 2022-12-04 03:46:04,012 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 22 order: 1 2022-12-04 03:46:04,022 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 23 order: 1 2022-12-04 03:46:04,554 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 80 order: 1 2022-12-04 03:46:04,602 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 85 order: 1 2022-12-04 03:46:04,789 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 105 order: 1 2022-12-04 03:46:04,919 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 119 order: 1 2022-12-04 03:46:05,316 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 161 order: 1 2022-12-04 03:46:05,372 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 167 order: 1 2022-12-04 03:46:05,458 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 176 order: 1 2022-12-04 03:46:05,630 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 194 order: 1 2022-12-04 03:46:06,135 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 248 order: 1 2022-12-04 03:46:06,618 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 299 order: 1 2022-12-04 03:46:06,657 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 303 order: 1 2022-12-04 03:46:06,753 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 313 order: 1 2022-12-04 03:46:06,925 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 331 order: 1 2022-12-04 03:46:07,001 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 339 order: 1 2022-12-04 03:46:07,151 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 355 order: 1 2022-12-04 03:46:07,189 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 359 order: 1 2022-12-04 03:46:07,863 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 431 order: 1 2022-12-04 03:46:07,996 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 445 order: 1 2022-12-04 03:46:08,252 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 472 order: 1 2022-12-04 03:46:08,490 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 497 order: 1 2022-12-04 03:46:09,670 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 623 order: 1 2022-12-04 03:46:10,058 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 664 order: 1 2022-12-04 03:46:10,227 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 682 order: 1 2022-12-04 03:46:10,359 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 696 order: 1 2022-12-04 03:46:10,676 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 730 order: 1 2022-12-04 03:46:10,685 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 731 order: 1 2022-12-04 03:46:10,857 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 749 order: 1 2022-12-04 03:46:10,867 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 750 order: 1 2022-12-04 03:46:10,876 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 751 order: 1 2022-12-04 03:46:10,895 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 753 order: 1 2022-12-04 03:46:10,904 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 754 order: 1 2022-12-04 03:46:10,923 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 756 order: 1 2022-12-04 03:46:10,932 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 757 order: 1 2022-12-04 03:46:10,942 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 758 order: 1 2022-12-04 03:46:10,951 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 759 order: 1 2022-12-04 03:46:10,960 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 760 order: 1 2022-12-04 03:46:10,970 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 761 order: 1 2022-12-04 03:46:10,979 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 762 order: 1 2022-12-04 03:46:10,979 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Total of 762 grism objects defined 2022-12-04 03:46:11,456 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Average of background image subtracted = 0.811879963316367 2022-12-04 03:46:11,726 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Saved model in jw01324001001_03101_00001_nis_bsub.fits 2022-12-04 03:46:11,726 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2022-12-04 03:46:12,117 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_bsub.fits>, []). 2022-12-04 03:46:12,118 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:46:12,118 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2022-12-04 03:46:12,121 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2022-12-04 03:46:12,433 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_bsub.fits>,). 2022-12-04 03:46:12,434 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:46:12,434 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2022-12-04 03:46:12,436 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2022-12-04 03:46:12,750 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_bsub.fits>,). 2022-12-04 03:46:12,751 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-12-04 03:46:14,478 - stpipe.Spec2Pipeline.flat_field - INFO - Saved model in jw01324001001_03101_00001_nis_flat_field.fits 2022-12-04 03:46:14,478 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field done 2022-12-04 03:46:14,479 - stpipe.Spec2Pipeline - INFO - Creating WFSS e-/sec product 2022-12-04 03:46:14,491 - stpipe.Spec2Pipeline - INFO - Using GAIN reference file /grp/crds/cache/references/jwst/jwst_niriss_gain_0006.fits 2022-12-04 03:46:14,949 - stpipe.Spec2Pipeline - INFO - mean gain = 1.6221113 2022-12-04 03:46:15,581 - stpipe.Spec2Pipeline - INFO - Saved model in jw01324001001_03101_00001_nis_esec.fits 2022-12-04 03:46:15,966 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_flat_field.fits>,). 2022-12-04 03:46:15,967 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10} 2022-12-04 03:46:15,983 - stpipe.Spec2Pipeline.extract_2d - INFO - EXP_TYPE is NIS_WFSS 2022-12-04 03:46:15,997 - stpipe.Spec2Pipeline.extract_2d - INFO - Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:46:16,287 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 1 order: 1 2022-12-04 03:46:16,296 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 2 order: 1 2022-12-04 03:46:16,306 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 3 order: 1 2022-12-04 03:46:16,315 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 4 order: 1 2022-12-04 03:46:16,328 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 5 order: 1 2022-12-04 03:46:16,337 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 6 order: 1 2022-12-04 03:46:16,347 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 7 order: 1 2022-12-04 03:46:16,357 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 8 order: 1 2022-12-04 03:46:16,369 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 9 order: 1 2022-12-04 03:46:16,378 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 10 order: 1 2022-12-04 03:46:16,388 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 11 order: 1 2022-12-04 03:46:16,397 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 12 order: 1 2022-12-04 03:46:16,410 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 13 order: 1 2022-12-04 03:46:16,419 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 14 order: 1 2022-12-04 03:46:16,428 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 15 order: 1 2022-12-04 03:46:16,438 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 16 order: 1 2022-12-04 03:46:16,447 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 17 order: 1 2022-12-04 03:46:16,458 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 18 order: 1 2022-12-04 03:46:16,467 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 19 order: 1 2022-12-04 03:46:16,489 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 21 order: 1 2022-12-04 03:46:16,498 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 22 order: 1 2022-12-04 03:46:16,508 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 23 order: 1 2022-12-04 03:46:17,106 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 80 order: 1 2022-12-04 03:46:17,161 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 85 order: 1 2022-12-04 03:46:17,370 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 105 order: 1 2022-12-04 03:46:17,527 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 119 order: 1 2022-12-04 03:46:17,964 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 161 order: 1 2022-12-04 03:46:18,029 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 167 order: 1 2022-12-04 03:46:18,122 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 176 order: 1 2022-12-04 03:46:18,301 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 194 order: 1 2022-12-04 03:46:18,857 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 248 order: 1 2022-12-04 03:46:19,415 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 303 order: 1 2022-12-04 03:46:19,528 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 313 order: 1 2022-12-04 03:46:19,714 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 331 order: 1 2022-12-04 03:46:19,795 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 339 order: 1 2022-12-04 03:46:19,971 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 355 order: 1 2022-12-04 03:46:20,014 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 359 order: 1 2022-12-04 03:46:20,747 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 431 order: 1 2022-12-04 03:46:20,900 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 445 order: 1 2022-12-04 03:46:21,184 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 472 order: 1 2022-12-04 03:46:21,344 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 488 order: 1 2022-12-04 03:46:21,433 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 497 order: 1 2022-12-04 03:46:22,758 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 623 order: 1 2022-12-04 03:46:23,185 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 664 order: 1 2022-12-04 03:46:23,376 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 682 order: 1 2022-12-04 03:46:23,444 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 688 order: 1 2022-12-04 03:46:23,527 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 696 order: 1 2022-12-04 03:46:23,890 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 730 order: 1 2022-12-04 03:46:23,899 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 731 order: 1 2022-12-04 03:46:24,090 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 749 order: 1 2022-12-04 03:46:24,100 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 750 order: 1 2022-12-04 03:46:24,110 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 751 order: 1 2022-12-04 03:46:24,133 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 753 order: 1 2022-12-04 03:46:24,146 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 754 order: 1 2022-12-04 03:46:24,172 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 756 order: 1 2022-12-04 03:46:24,182 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 757 order: 1 2022-12-04 03:46:24,195 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 758 order: 1 2022-12-04 03:46:24,205 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 759 order: 1 2022-12-04 03:46:24,215 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 760 order: 1 2022-12-04 03:46:24,225 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 761 order: 1 2022-12-04 03:46:24,235 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 762 order: 1 2022-12-04 03:46:24,237 - stpipe.Spec2Pipeline.extract_2d - INFO - Total of 10 grism objects defined 2022-12-04 03:46:24,251 - stpipe.Spec2Pipeline.extract_2d - INFO - Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:46:24,252 - stpipe.Spec2Pipeline.extract_2d - INFO - Extracting 10 grism objects 2022-12-04 03:46:24,459 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 432 order: 1: 2022-12-04 03:46:24,460 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1388, xmax:1609), (ymin:1112, ymax:1471) 2022-12-04 03:46:24,807 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 477 order: 1: 2022-12-04 03:46:24,808 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1031, xmax:1259), (ymin:1313, ymax:1562) 2022-12-04 03:46:25,159 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 450 order: 1: 2022-12-04 03:46:25,160 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:703, xmax:884), (ymin:1176, ymax:1497) 2022-12-04 03:46:25,529 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 322 order: 1: 2022-12-04 03:46:25,529 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:714, xmax:911), (ymin:800, ymax:1028) 2022-12-04 03:46:25,887 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 456 order: 1: 2022-12-04 03:46:25,888 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:856, xmax:1010), (ymin:1191, ymax:1394) 2022-12-04 03:46:26,237 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 104 order: 1: 2022-12-04 03:46:26,237 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1912, xmax:2045), (ymin:216, ymax:546) 2022-12-04 03:46:26,543 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 675 order: 1: 2022-12-04 03:46:26,543 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1462, xmax:1579), (ymin:1791, ymax:2000) 2022-12-04 03:46:26,849 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 220 order: 1: 2022-12-04 03:46:26,850 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:793.5329832043078, xmax:803.5329832043078), (ymin:520, ymax:756) 2022-12-04 03:46:27,142 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 678 order: 1: 2022-12-04 03:46:27,143 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:24, xmax:252), (ymin:1790, ymax:2032) 2022-12-04 03:46:27,918 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 15 order: 1: 2022-12-04 03:46:27,919 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:472, xmax:611), (ymin:0, ymax:189) 2022-12-04 03:46:28,307 - stpipe.Spec2Pipeline.extract_2d - INFO - Finished extractions 2022-12-04 03:46:29,285 - stpipe.Spec2Pipeline.extract_2d - INFO - Saved model in jw01324001001_03101_00001_nis_extract_2d.fits 2022-12-04 03:46:29,285 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d done 2022-12-04 03:46:29,657 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_extract_2d.fits>,). 2022-12-04 03:46:29,658 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None} 2022-12-04 03:46:29,665 - stpipe.Spec2Pipeline.srctype - INFO - Input EXP_TYPE is NIS_WFSS 2022-12-04 03:46:29,666 - stpipe.Spec2Pipeline.srctype - INFO - source_id=432, type=EXTENDED 2022-12-04 03:46:29,667 - stpipe.Spec2Pipeline.srctype - INFO - source_id=477, type=EXTENDED 2022-12-04 03:46:29,667 - stpipe.Spec2Pipeline.srctype - INFO - source_id=450, type=EXTENDED 2022-12-04 03:46:29,668 - stpipe.Spec2Pipeline.srctype - INFO - source_id=322, type=EXTENDED 2022-12-04 03:46:29,669 - stpipe.Spec2Pipeline.srctype - INFO - source_id=456, type=EXTENDED 2022-12-04 03:46:29,670 - stpipe.Spec2Pipeline.srctype - INFO - source_id=104, type=EXTENDED 2022-12-04 03:46:29,671 - stpipe.Spec2Pipeline.srctype - INFO - source_id=675, type=EXTENDED 2022-12-04 03:46:29,671 - stpipe.Spec2Pipeline.srctype - INFO - source_id=220, type=POINT 2022-12-04 03:46:29,672 - stpipe.Spec2Pipeline.srctype - INFO - source_id=678, type=EXTENDED 2022-12-04 03:46:29,673 - stpipe.Spec2Pipeline.srctype - INFO - source_id=15, type=EXTENDED 2022-12-04 03:46:30,656 - stpipe.Spec2Pipeline.srctype - INFO - Saved model in jw01324001001_03101_00001_nis_srctype.fits 2022-12-04 03:46:30,656 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype done 2022-12-04 03:46:31,013 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). 2022-12-04 03:46:31,014 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:46:31,014 - stpipe.Spec2Pipeline.straylight - INFO - Step skipped. 2022-12-04 03:46:31,016 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight done 2022-12-04 03:46:31,364 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). 2022-12-04 03:46:31,365 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:46:31,365 - stpipe.Spec2Pipeline.fringe - INFO - Step skipped. 2022-12-04 03:46:31,368 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe done 2022-12-04 03:46:31,707 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). 2022-12-04 03:46:31,708 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:46:31,708 - stpipe.Spec2Pipeline.pathloss - INFO - Step skipped. 2022-12-04 03:46:31,710 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss done 2022-12-04 03:46:32,066 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). 2022-12-04 03:46:32,067 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:46:32,067 - stpipe.Spec2Pipeline.barshadow - INFO - Step skipped. 2022-12-04 03:46:32,069 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow done 2022-12-04 03:46:32,412 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). 2022-12-04 03:46:32,413 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'} 2022-12-04 03:46:32,413 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step skipped. 2022-12-04 03:46:32,416 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam done 2022-12-04 03:46:32,755 - stpipe.Spec2Pipeline.photom - INFO - Step photom running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). 2022-12-04 03:46:32,756 - stpipe.Spec2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:46:32,870 - stpipe.Spec2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits 2022-12-04 03:46:32,871 - stpipe.Spec2Pipeline.photom - INFO - Using area reference file: N/A 2022-12-04 03:46:33,537 - stpipe.Spec2Pipeline.photom - INFO - Using instrument: NIRISS 2022-12-04 03:46:33,538 - stpipe.Spec2Pipeline.photom - INFO - detector: NIS 2022-12-04 03:46:33,538 - stpipe.Spec2Pipeline.photom - INFO - exp_type: NIS_WFSS 2022-12-04 03:46:33,538 - stpipe.Spec2Pipeline.photom - INFO - filter: GR150R 2022-12-04 03:46:33,538 - stpipe.Spec2Pipeline.photom - INFO - pupil: F115W 2022-12-04 03:46:33,604 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 432, order 1 2022-12-04 03:46:33,604 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:46:33,615 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 477, order 1 2022-12-04 03:46:33,616 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:46:33,626 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 450, order 1 2022-12-04 03:46:33,626 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:46:33,636 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 322, order 1 2022-12-04 03:46:33,637 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:46:33,646 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 456, order 1 2022-12-04 03:46:33,647 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:46:33,656 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 104, order 1 2022-12-04 03:46:33,656 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:46:33,666 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 675, order 1 2022-12-04 03:46:33,666 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:46:33,675 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 220, order 1 2022-12-04 03:46:33,675 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:46:33,684 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 678, order 1 2022-12-04 03:46:33,684 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:46:33,694 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 15, order 1 2022-12-04 03:46:33,694 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:46:34,713 - stpipe.Spec2Pipeline.photom - INFO - Saved model in jw01324001001_03101_00001_nis_photom.fits 2022-12-04 03:46:34,713 - stpipe.Spec2Pipeline.photom - INFO - Step photom done 2022-12-04 03:46:35,094 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_cal.fits>,). 2022-12-04 03:46:35,095 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:46:35,103 - stpipe.Spec2Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:46:35,144 - stpipe.Spec2Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:46:35,196 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:46:35,196 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:46:35,198 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=358 2022-12-04 03:46:35,271 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:46:35,271 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:46:35,273 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 2022-12-04 03:46:35,342 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:46:35,343 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:46:35,344 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 2022-12-04 03:46:35,415 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:46:35,415 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:46:35,417 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 2022-12-04 03:46:35,485 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:46:35,485 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:46:35,487 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=202 2022-12-04 03:46:35,554 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:46:35,554 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:46:35,556 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=132, ystart=0, ystop=329 2022-12-04 03:46:35,626 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:46:35,626 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:46:35,628 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=208 2022-12-04 03:46:35,697 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:46:35,698 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 2022-12-04 03:46:35,764 - stpipe.Spec2Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:46:35,910 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:46:35,911 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:46:35,913 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=241 2022-12-04 03:46:35,982 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:46:35,982 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:46:35,984 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=188 2022-12-04 03:46:36,392 - stpipe.Spec2Pipeline.extract_1d - INFO - Saved model in jw01324001001_03101_00001_nis_x1d.fits 2022-12-04 03:46:36,392 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:46:36,392 - stpipe.Spec2Pipeline - INFO - Finished processing product jw01324001001_03101_00001_nis 2022-12-04 03:46:36,392 - stpipe.Spec2Pipeline - INFO - Ending calwebb_spec2 2022-12-04 03:46:36,392 - stpipe.Spec2Pipeline - INFO - Results used CRDS context: jwst_1019.pmap 2022-12-04 03:46:37,428 - stpipe.Spec2Pipeline - INFO - Saved model in jw01324001001_03101_00001_nis_cal.fits 2022-12-04 03:46:37,428 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline done 2022-12-04 03:46:39,316 - CRDS - ERROR - Error determining best reference for 'pars-residualfringestep' = Unknown reference type 'pars-residualfringestep' 2022-12-04 03:46:39,323 - stpipe - INFO - PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0005.asdf 2022-12-04 03:46:39,357 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2022-12-04 03:46:39,357 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-12-04 03:46:39,359 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-12-04 03:46:39,359 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2022-12-04 03:46:39,360 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2022-12-04 03:46:39,361 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2022-12-04 03:46:39,363 - stpipe.Spec2Pipeline.master_background_mos - INFO - MasterBackgroundMosStep instance created. 2022-12-04 03:46:39,364 - stpipe.Spec2Pipeline.master_background_mos.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:46:39,365 - stpipe.Spec2Pipeline.master_background_mos.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:46:39,365 - stpipe.Spec2Pipeline.master_background_mos.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:46:39,366 - stpipe.Spec2Pipeline.master_background_mos.photom - INFO - PhotomStep instance created. 2022-12-04 03:46:39,367 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2022-12-04 03:46:39,368 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:46:39,368 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2022-12-04 03:46:39,369 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2022-12-04 03:46:39,370 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2022-12-04 03:46:39,370 - stpipe.Spec2Pipeline.residual_fringe - INFO - ResidualFringeStep instance created. 2022-12-04 03:46:39,371 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:46:39,372 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:46:39,373 - stpipe.Spec2Pipeline.wfss_contam - INFO - WfssContamStep instance created. 2022-12-04 03:46:39,373 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2022-12-04 03:46:39,374 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2022-12-04 03:46:39,376 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2022-12-04 03:46:39,377 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-12-04 03:46:39,764 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec2_002_asn.json',). 2022-12-04 03:46:39,777 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} 2022-12-04 03:46:39,837 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw01324001001_03101_00002_nis_rate.fits' reftypes = ['apcorr', 'area', 'barshadow', 'camera', 'collimator', 'cubepar', 'dflat', 'disperser', 'distortion', 'drizpars', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'mrsxartcorr', 'msa', 'msaoper', 'ote', 'pathloss', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap', 'wfssbkg'] 2022-12-04 03:46:39,844 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. 2022-12-04 03:46:39,845 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2022-12-04 03:46:39,845 - stpipe.Spec2Pipeline - INFO - Prefetch for BARSHADOW reference file is 'N/A'. 2022-12-04 03:46:39,845 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-12-04 03:46:39,845 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-12-04 03:46:39,845 - stpipe.Spec2Pipeline - INFO - Prefetch for CUBEPAR reference file is 'N/A'. 2022-12-04 03:46:39,845 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-12-04 03:46:39,845 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-12-04 03:46:39,845 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf'. 2022-12-04 03:46:39,847 - stpipe.Spec2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. 2022-12-04 03:46:39,848 - stpipe.Spec2Pipeline - INFO - Prefetch for EXTRACT1D reference file is 'N/A'. 2022-12-04 03:46:39,848 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-12-04 03:46:39,848 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'N/A'. 2022-12-04 03:46:39,848 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0269.fits'. 2022-12-04 03:46:39,849 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-12-04 03:46:39,849 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-12-04 03:46:39,849 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2022-12-04 03:46:39,849 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-12-04 03:46:39,849 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-12-04 03:46:39,849 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-12-04 03:46:39,849 - stpipe.Spec2Pipeline - INFO - Prefetch for MRSXARTCORR reference file is 'N/A'. 2022-12-04 03:46:39,849 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-12-04 03:46:39,849 - stpipe.Spec2Pipeline - INFO - Prefetch for MSAOPER reference file is 'N/A'. 2022-12-04 03:46:39,849 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-12-04 03:46:39,849 - stpipe.Spec2Pipeline - INFO - Prefetch for PATHLOSS reference file is 'N/A'. 2022-12-04 03:46:39,850 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. 2022-12-04 03:46:39,850 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-12-04 03:46:39,850 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-12-04 03:46:39,850 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECKERNEL reference file is 'N/A'. 2022-12-04 03:46:39,850 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECPROFILE reference file is 'N/A'. 2022-12-04 03:46:39,850 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECTRACE reference file is 'N/A'. 2022-12-04 03:46:39,850 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf'. 2022-12-04 03:46:39,852 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2022-12-04 03:46:39,852 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf'. 2022-12-04 03:46:39,853 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVEMAP reference file is 'N/A'. 2022-12-04 03:46:39,853 - stpipe.Spec2Pipeline - INFO - Prefetch for WFSSBKG reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0019.fits'. 2022-12-04 03:46:39,854 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2022-12-04 03:46:39,861 - stpipe.Spec2Pipeline - INFO - Processing product jw01324001001_03101_00002_nis 2022-12-04 03:46:39,861 - stpipe.Spec2Pipeline - INFO - Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00002_nis_rate.fits ... 2022-12-04 03:46:39,901 - stpipe.Spec2Pipeline - INFO - Using sourcecat file jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:46:39,902 - stpipe.Spec2Pipeline - INFO - Using segmentation map jw01324-o001_t001_niriss_clear-f115w_segm.fits 2022-12-04 03:46:39,902 - stpipe.Spec2Pipeline - INFO - Using direct image jw01324-o001_t001_niriss_clear-f115w_i2d.fits 2022-12-04 03:46:40,234 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>,). 2022-12-04 03:46:40,235 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-12-04 03:46:40,565 - stpipe.Spec2Pipeline.assign_wcs - INFO - Added Barycentric velocity correction: 1.0000819886372214 2022-12-04 03:46:40,778 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-12-04 03:46:40,790 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-12-04 03:46:41,126 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>, []). 2022-12-04 03:46:41,127 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'bsub', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} 2022-12-04 03:46:41,152 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Using WFSSBKG reference file /grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0019.fits 2022-12-04 03:46:41,152 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Using WavelengthRange reference file /grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf 2022-12-04 03:46:41,301 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:46:41,598 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 1 order: 1 2022-12-04 03:46:41,608 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 2 order: 1 2022-12-04 03:46:41,618 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 3 order: 1 2022-12-04 03:46:41,628 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 4 order: 1 2022-12-04 03:46:41,638 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 5 order: 1 2022-12-04 03:46:41,648 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 6 order: 1 2022-12-04 03:46:41,658 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 7 order: 1 2022-12-04 03:46:41,668 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 8 order: 1 2022-12-04 03:46:41,678 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 9 order: 1 2022-12-04 03:46:41,688 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 10 order: 1 2022-12-04 03:46:41,698 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 11 order: 1 2022-12-04 03:46:41,707 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 12 order: 1 2022-12-04 03:46:41,717 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 13 order: 1 2022-12-04 03:46:41,726 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 14 order: 1 2022-12-04 03:46:41,736 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 15 order: 1 2022-12-04 03:46:41,745 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 16 order: 1 2022-12-04 03:46:41,755 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 17 order: 1 2022-12-04 03:46:42,026 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 46 order: 1 2022-12-04 03:46:42,569 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 104 order: 1 2022-12-04 03:46:42,952 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 145 order: 1 2022-12-04 03:46:42,989 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 149 order: 1 2022-12-04 03:46:44,094 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 268 order: 1 2022-12-04 03:46:45,395 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 400 order: 1 2022-12-04 03:46:46,530 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 518 order: 1 2022-12-04 03:46:46,577 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 523 order: 1 2022-12-04 03:46:48,698 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 749 order: 1 2022-12-04 03:46:48,708 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 750 order: 1 2022-12-04 03:46:48,717 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 751 order: 1 2022-12-04 03:46:48,736 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 753 order: 1 2022-12-04 03:46:48,746 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 754 order: 1 2022-12-04 03:46:48,755 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 755 order: 1 2022-12-04 03:46:48,765 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 756 order: 1 2022-12-04 03:46:48,774 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 757 order: 1 2022-12-04 03:46:48,783 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 758 order: 1 2022-12-04 03:46:48,793 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 759 order: 1 2022-12-04 03:46:48,803 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 760 order: 1 2022-12-04 03:46:48,812 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 761 order: 1 2022-12-04 03:46:48,822 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 762 order: 1 2022-12-04 03:46:48,822 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Total of 762 grism objects defined 2022-12-04 03:46:49,298 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Average of background image subtracted = 0.8117105022499869 2022-12-04 03:46:49,311 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2022-12-04 03:46:49,716 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>, []). 2022-12-04 03:46:49,717 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:46:49,717 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2022-12-04 03:46:49,719 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2022-12-04 03:46:50,055 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>,). 2022-12-04 03:46:50,056 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:46:50,056 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2022-12-04 03:46:50,058 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2022-12-04 03:46:50,388 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>,). 2022-12-04 03:46:50,389 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-12-04 03:46:51,007 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field done 2022-12-04 03:46:51,345 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>,). 2022-12-04 03:46:51,345 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10} 2022-12-04 03:46:51,362 - stpipe.Spec2Pipeline.extract_2d - INFO - EXP_TYPE is NIS_WFSS 2022-12-04 03:46:51,376 - stpipe.Spec2Pipeline.extract_2d - INFO - Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:46:51,661 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 1 order: 1 2022-12-04 03:46:51,671 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 2 order: 1 2022-12-04 03:46:51,681 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 3 order: 1 2022-12-04 03:46:51,690 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 4 order: 1 2022-12-04 03:46:51,703 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 5 order: 1 2022-12-04 03:46:51,713 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 6 order: 1 2022-12-04 03:46:51,723 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 7 order: 1 2022-12-04 03:46:51,733 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 8 order: 1 2022-12-04 03:46:51,745 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 9 order: 1 2022-12-04 03:46:51,755 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 10 order: 1 2022-12-04 03:46:51,765 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 11 order: 1 2022-12-04 03:46:51,775 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 12 order: 1 2022-12-04 03:46:51,787 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 13 order: 1 2022-12-04 03:46:51,797 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 14 order: 1 2022-12-04 03:46:51,806 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 15 order: 1 2022-12-04 03:46:51,816 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 16 order: 1 2022-12-04 03:46:51,826 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 17 order: 1 2022-12-04 03:46:52,128 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 46 order: 1 2022-12-04 03:46:52,493 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 80 order: 1 2022-12-04 03:46:52,748 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 104 order: 1 2022-12-04 03:46:53,178 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 145 order: 1 2022-12-04 03:46:53,218 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 149 order: 1 2022-12-04 03:46:54,250 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 248 order: 1 2022-12-04 03:46:54,456 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 268 order: 1 2022-12-04 03:46:55,803 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 400 order: 1 2022-12-04 03:46:57,013 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 518 order: 1 2022-12-04 03:46:57,065 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 523 order: 1 2022-12-04 03:46:59,393 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 749 order: 1 2022-12-04 03:46:59,402 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 750 order: 1 2022-12-04 03:46:59,412 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 751 order: 1 2022-12-04 03:46:59,433 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 753 order: 1 2022-12-04 03:46:59,445 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 754 order: 1 2022-12-04 03:46:59,457 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 755 order: 1 2022-12-04 03:46:59,470 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 756 order: 1 2022-12-04 03:46:59,479 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 757 order: 1 2022-12-04 03:46:59,491 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 758 order: 1 2022-12-04 03:46:59,500 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 759 order: 1 2022-12-04 03:46:59,510 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 760 order: 1 2022-12-04 03:46:59,519 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 761 order: 1 2022-12-04 03:46:59,528 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 762 order: 1 2022-12-04 03:46:59,530 - stpipe.Spec2Pipeline.extract_2d - INFO - Total of 10 grism objects defined 2022-12-04 03:46:59,542 - stpipe.Spec2Pipeline.extract_2d - INFO - Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:46:59,543 - stpipe.Spec2Pipeline.extract_2d - INFO - Extracting 10 grism objects 2022-12-04 03:46:59,750 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 432 order: 1: 2022-12-04 03:46:59,750 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1396, xmax:1617), (ymin:1117, ymax:1475) 2022-12-04 03:47:00,075 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 477 order: 1: 2022-12-04 03:47:00,076 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1039, xmax:1267), (ymin:1318, ymax:1567) 2022-12-04 03:47:00,427 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 450 order: 1: 2022-12-04 03:47:00,428 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:711, xmax:892), (ymin:1181, ymax:1502) 2022-12-04 03:47:00,748 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 322 order: 1: 2022-12-04 03:47:00,748 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:722, xmax:919), (ymin:805, ymax:1033) 2022-12-04 03:47:01,063 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 456 order: 1: 2022-12-04 03:47:01,063 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:864, xmax:1018), (ymin:1195, ymax:1399) 2022-12-04 03:47:01,372 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 104 order: 1: 2022-12-04 03:47:01,372 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1920, xmax:2048), (ymin:221, ymax:550) 2022-12-04 03:47:01,681 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 675 order: 1: 2022-12-04 03:47:01,681 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1470, xmax:1587), (ymin:1795, ymax:2005) 2022-12-04 03:47:01,988 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 220 order: 1: 2022-12-04 03:47:01,988 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:801.5415030931132, xmax:811.5415030931132), (ymin:525, ymax:761) 2022-12-04 03:47:02,290 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 678 order: 1: 2022-12-04 03:47:02,290 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:32, xmax:260), (ymin:1795, ymax:2036) 2022-12-04 03:47:03,054 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 15 order: 1: 2022-12-04 03:47:03,054 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:480, xmax:619), (ymin:0, ymax:194) 2022-12-04 03:47:03,446 - stpipe.Spec2Pipeline.extract_2d - INFO - Finished extractions 2022-12-04 03:47:03,451 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d done 2022-12-04 03:47:03,819 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). 2022-12-04 03:47:03,820 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None} 2022-12-04 03:47:03,827 - stpipe.Spec2Pipeline.srctype - INFO - Input EXP_TYPE is NIS_WFSS 2022-12-04 03:47:03,828 - stpipe.Spec2Pipeline.srctype - INFO - source_id=432, type=EXTENDED 2022-12-04 03:47:03,829 - stpipe.Spec2Pipeline.srctype - INFO - source_id=477, type=EXTENDED 2022-12-04 03:47:03,829 - stpipe.Spec2Pipeline.srctype - INFO - source_id=450, type=EXTENDED 2022-12-04 03:47:03,830 - stpipe.Spec2Pipeline.srctype - INFO - source_id=322, type=EXTENDED 2022-12-04 03:47:03,831 - stpipe.Spec2Pipeline.srctype - INFO - source_id=456, type=EXTENDED 2022-12-04 03:47:03,832 - stpipe.Spec2Pipeline.srctype - INFO - source_id=104, type=EXTENDED 2022-12-04 03:47:03,833 - stpipe.Spec2Pipeline.srctype - INFO - source_id=675, type=EXTENDED 2022-12-04 03:47:03,833 - stpipe.Spec2Pipeline.srctype - INFO - source_id=220, type=POINT 2022-12-04 03:47:03,834 - stpipe.Spec2Pipeline.srctype - INFO - source_id=678, type=EXTENDED 2022-12-04 03:47:03,835 - stpipe.Spec2Pipeline.srctype - INFO - source_id=15, type=EXTENDED 2022-12-04 03:47:03,837 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype done 2022-12-04 03:47:04,185 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). 2022-12-04 03:47:04,186 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:47:04,186 - stpipe.Spec2Pipeline.straylight - INFO - Step skipped. 2022-12-04 03:47:04,188 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight done 2022-12-04 03:47:04,533 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). 2022-12-04 03:47:04,534 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:47:04,534 - stpipe.Spec2Pipeline.fringe - INFO - Step skipped. 2022-12-04 03:47:04,537 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe done 2022-12-04 03:47:05,035 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). 2022-12-04 03:47:05,036 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:47:05,036 - stpipe.Spec2Pipeline.pathloss - INFO - Step skipped. 2022-12-04 03:47:05,038 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss done 2022-12-04 03:47:05,471 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). 2022-12-04 03:47:05,472 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:47:05,472 - stpipe.Spec2Pipeline.barshadow - INFO - Step skipped. 2022-12-04 03:47:05,475 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow done 2022-12-04 03:47:05,835 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). 2022-12-04 03:47:05,835 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'} 2022-12-04 03:47:05,836 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step skipped. 2022-12-04 03:47:05,838 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam done 2022-12-04 03:47:06,200 - stpipe.Spec2Pipeline.photom - INFO - Step photom running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). 2022-12-04 03:47:06,201 - stpipe.Spec2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:47:06,235 - stpipe.Spec2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits 2022-12-04 03:47:06,236 - stpipe.Spec2Pipeline.photom - INFO - Using area reference file: N/A 2022-12-04 03:47:06,965 - stpipe.Spec2Pipeline.photom - INFO - Using instrument: NIRISS 2022-12-04 03:47:06,965 - stpipe.Spec2Pipeline.photom - INFO - detector: NIS 2022-12-04 03:47:06,965 - stpipe.Spec2Pipeline.photom - INFO - exp_type: NIS_WFSS 2022-12-04 03:47:06,966 - stpipe.Spec2Pipeline.photom - INFO - filter: GR150R 2022-12-04 03:47:06,966 - stpipe.Spec2Pipeline.photom - INFO - pupil: F115W 2022-12-04 03:47:07,006 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 432, order 1 2022-12-04 03:47:07,006 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:47:07,018 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 477, order 1 2022-12-04 03:47:07,019 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:47:07,030 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 450, order 1 2022-12-04 03:47:07,030 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:47:07,042 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 322, order 1 2022-12-04 03:47:07,042 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:47:07,053 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 456, order 1 2022-12-04 03:47:07,054 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:47:07,064 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 104, order 1 2022-12-04 03:47:07,064 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:47:07,075 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 675, order 1 2022-12-04 03:47:07,076 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:47:07,086 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 220, order 1 2022-12-04 03:47:07,086 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:47:07,095 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 678, order 1 2022-12-04 03:47:07,095 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:47:07,106 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 15, order 1 2022-12-04 03:47:07,107 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 17.0872 2022-12-04 03:47:07,122 - stpipe.Spec2Pipeline.photom - INFO - Step photom done 2022-12-04 03:47:07,531 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_cal.fits>,). 2022-12-04 03:47:07,533 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:47:07,541 - stpipe.Spec2Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:47:07,554 - stpipe.Spec2Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:47:07,592 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:47:07,592 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:07,594 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=357 2022-12-04 03:47:07,675 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:47:07,676 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:07,678 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 2022-12-04 03:47:07,752 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:47:07,752 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:07,754 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 2022-12-04 03:47:07,832 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:47:07,833 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:07,835 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 2022-12-04 03:47:07,910 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:47:07,911 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:07,912 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=203 2022-12-04 03:47:07,987 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:47:07,987 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:07,989 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=127, ystart=0, ystop=328 2022-12-04 03:47:08,069 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:47:08,069 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:08,071 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=209 2022-12-04 03:47:08,152 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:47:08,154 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 2022-12-04 03:47:08,225 - stpipe.Spec2Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:47:08,379 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:47:08,380 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:08,382 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=240 2022-12-04 03:47:08,458 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:47:08,459 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:08,460 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=193 2022-12-04 03:47:08,898 - stpipe.Spec2Pipeline.extract_1d - INFO - Saved model in jw01324001001_03101_00002_nis_x1d.fits 2022-12-04 03:47:08,898 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:47:08,898 - stpipe.Spec2Pipeline - INFO - Finished processing product jw01324001001_03101_00002_nis 2022-12-04 03:47:08,898 - stpipe.Spec2Pipeline - INFO - Ending calwebb_spec2 2022-12-04 03:47:08,898 - stpipe.Spec2Pipeline - INFO - Results used CRDS context: jwst_1019.pmap 2022-12-04 03:47:10,016 - stpipe.Spec2Pipeline - INFO - Saved model in jw01324001001_03101_00002_nis_cal.fits 2022-12-04 03:47:10,016 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline done 2022-12-04 03:47:11,874 - CRDS - ERROR - Error determining best reference for 'pars-residualfringestep' = Unknown reference type 'pars-residualfringestep' 2022-12-04 03:47:11,881 - stpipe - INFO - PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0005.asdf 2022-12-04 03:47:11,919 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2022-12-04 03:47:11,921 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-12-04 03:47:11,922 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-12-04 03:47:11,923 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2022-12-04 03:47:11,924 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2022-12-04 03:47:11,925 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2022-12-04 03:47:11,927 - stpipe.Spec2Pipeline.master_background_mos - INFO - MasterBackgroundMosStep instance created. 2022-12-04 03:47:11,928 - stpipe.Spec2Pipeline.master_background_mos.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:47:11,929 - stpipe.Spec2Pipeline.master_background_mos.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:47:11,929 - stpipe.Spec2Pipeline.master_background_mos.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:47:11,930 - stpipe.Spec2Pipeline.master_background_mos.photom - INFO - PhotomStep instance created. 2022-12-04 03:47:11,931 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2022-12-04 03:47:11,932 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:47:11,932 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2022-12-04 03:47:11,933 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2022-12-04 03:47:11,934 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2022-12-04 03:47:11,935 - stpipe.Spec2Pipeline.residual_fringe - INFO - ResidualFringeStep instance created. 2022-12-04 03:47:11,935 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:47:11,936 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:47:11,937 - stpipe.Spec2Pipeline.wfss_contam - INFO - WfssContamStep instance created. 2022-12-04 03:47:11,938 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2022-12-04 03:47:11,939 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2022-12-04 03:47:11,940 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2022-12-04 03:47:11,941 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-12-04 03:47:12,739 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec2_005_asn.json',). 2022-12-04 03:47:12,753 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} 2022-12-04 03:47:12,817 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw01324001001_05101_00002_nis_rate.fits' reftypes = ['apcorr', 'area', 'barshadow', 'camera', 'collimator', 'cubepar', 'dflat', 'disperser', 'distortion', 'drizpars', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'mrsxartcorr', 'msa', 'msaoper', 'ote', 'pathloss', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap', 'wfssbkg'] 2022-12-04 03:47:12,826 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. 2022-12-04 03:47:12,827 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2022-12-04 03:47:12,827 - stpipe.Spec2Pipeline - INFO - Prefetch for BARSHADOW reference file is 'N/A'. 2022-12-04 03:47:12,827 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-12-04 03:47:12,827 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-12-04 03:47:12,827 - stpipe.Spec2Pipeline - INFO - Prefetch for CUBEPAR reference file is 'N/A'. 2022-12-04 03:47:12,827 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-12-04 03:47:12,827 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-12-04 03:47:12,827 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf'. 2022-12-04 03:47:12,828 - stpipe.Spec2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. 2022-12-04 03:47:12,830 - stpipe.Spec2Pipeline - INFO - Prefetch for EXTRACT1D reference file is 'N/A'. 2022-12-04 03:47:12,830 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-12-04 03:47:12,830 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'N/A'. 2022-12-04 03:47:12,830 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0279.fits'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for MRSXARTCORR reference file is 'N/A'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for MSAOPER reference file is 'N/A'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for PATHLOSS reference file is 'N/A'. 2022-12-04 03:47:12,831 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. 2022-12-04 03:47:12,832 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-12-04 03:47:12,832 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-12-04 03:47:12,832 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECKERNEL reference file is 'N/A'. 2022-12-04 03:47:12,832 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECPROFILE reference file is 'N/A'. 2022-12-04 03:47:12,833 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECTRACE reference file is 'N/A'. 2022-12-04 03:47:12,833 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf'. 2022-12-04 03:47:12,834 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2022-12-04 03:47:12,834 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf'. 2022-12-04 03:47:12,835 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVEMAP reference file is 'N/A'. 2022-12-04 03:47:12,836 - stpipe.Spec2Pipeline - INFO - Prefetch for WFSSBKG reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0023.fits'. 2022-12-04 03:47:12,837 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2022-12-04 03:47:12,844 - stpipe.Spec2Pipeline - INFO - Processing product jw01324001001_05101_00002_nis 2022-12-04 03:47:12,844 - stpipe.Spec2Pipeline - INFO - Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_05101_00002_nis_rate.fits ... 2022-12-04 03:47:12,886 - stpipe.Spec2Pipeline - INFO - Using sourcecat file jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:47:12,887 - stpipe.Spec2Pipeline - INFO - Using segmentation map jw01324-o001_t001_niriss_clear-f115w_segm.fits 2022-12-04 03:47:12,887 - stpipe.Spec2Pipeline - INFO - Using direct image jw01324-o001_t001_niriss_clear-f115w_i2d.fits 2022-12-04 03:47:13,602 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>,). 2022-12-04 03:47:13,603 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-12-04 03:47:13,976 - stpipe.Spec2Pipeline.assign_wcs - INFO - Added Barycentric velocity correction: 1.000081950938299 2022-12-04 03:47:14,221 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-12-04 03:47:14,234 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-12-04 03:47:14,960 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>, []). 2022-12-04 03:47:14,961 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'bsub', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} 2022-12-04 03:47:14,989 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Using WFSSBKG reference file /grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0023.fits 2022-12-04 03:47:14,990 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Using WavelengthRange reference file /grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf 2022-12-04 03:47:17,058 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:47:17,383 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 3 order: 1 2022-12-04 03:47:17,431 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 8 order: 1 2022-12-04 03:47:17,789 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 46 order: 1 2022-12-04 03:47:18,046 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 73 order: 1 2022-12-04 03:47:18,114 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 80 order: 1 2022-12-04 03:47:18,162 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 85 order: 1 2022-12-04 03:47:18,266 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 96 order: 1 2022-12-04 03:47:18,344 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 104 order: 1 2022-12-04 03:47:18,354 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 105 order: 1 2022-12-04 03:47:18,479 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 118 order: 1 2022-12-04 03:47:18,489 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 119 order: 1 2022-12-04 03:47:18,741 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 145 order: 1 2022-12-04 03:47:18,751 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 146 order: 1 2022-12-04 03:47:18,780 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 149 order: 1 2022-12-04 03:47:18,897 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 161 order: 1 2022-12-04 03:47:18,955 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 167 order: 1 2022-12-04 03:47:19,042 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 176 order: 1 2022-12-04 03:47:19,166 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 189 order: 1 2022-12-04 03:47:19,214 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 194 order: 1 2022-12-04 03:47:19,526 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 226 order: 1 2022-12-04 03:47:19,629 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 237 order: 1 2022-12-04 03:47:19,723 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 247 order: 1 2022-12-04 03:47:19,733 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 248 order: 1 2022-12-04 03:47:19,809 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 256 order: 1 2022-12-04 03:47:19,924 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 268 order: 1 2022-12-04 03:47:20,204 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 297 order: 1 2022-12-04 03:47:20,224 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 299 order: 1 2022-12-04 03:47:20,262 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 303 order: 1 2022-12-04 03:47:20,356 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 313 order: 1 2022-12-04 03:47:20,469 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 325 order: 1 2022-12-04 03:47:20,528 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 331 order: 1 2022-12-04 03:47:20,605 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 339 order: 1 2022-12-04 03:47:20,633 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 342 order: 1 2022-12-04 03:47:20,757 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 355 order: 1 2022-12-04 03:47:20,795 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 359 order: 1 2022-12-04 03:47:21,183 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 400 order: 1 2022-12-04 03:47:21,370 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 420 order: 1 2022-12-04 03:47:21,473 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 431 order: 1 2022-12-04 03:47:21,511 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 435 order: 1 2022-12-04 03:47:21,606 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 445 order: 1 2022-12-04 03:47:21,644 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 449 order: 1 2022-12-04 03:47:21,788 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 464 order: 1 2022-12-04 03:47:21,816 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 467 order: 1 2022-12-04 03:47:21,863 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 472 order: 1 2022-12-04 03:47:21,966 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 483 order: 1 2022-12-04 03:47:22,013 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 488 order: 1 2022-12-04 03:47:22,032 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 490 order: 1 2022-12-04 03:47:22,100 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 497 order: 1 2022-12-04 03:47:22,299 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 518 order: 1 2022-12-04 03:47:22,309 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 519 order: 1 2022-12-04 03:47:22,319 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 520 order: 1 2022-12-04 03:47:22,348 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 523 order: 1 2022-12-04 03:47:22,427 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 531 order: 1 2022-12-04 03:47:22,712 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 560 order: 1 2022-12-04 03:47:23,025 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 592 order: 1 2022-12-04 03:47:23,329 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 623 order: 1 2022-12-04 03:47:23,629 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 654 order: 1 2022-12-04 03:47:23,726 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 664 order: 1 2022-12-04 03:47:23,848 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 676 order: 1 2022-12-04 03:47:23,868 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 678 order: 1 2022-12-04 03:47:23,907 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 682 order: 1 2022-12-04 03:47:23,969 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 688 order: 1 2022-12-04 03:47:24,048 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 696 order: 1 2022-12-04 03:47:24,146 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 706 order: 1 2022-12-04 03:47:24,375 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 730 order: 1 2022-12-04 03:47:24,386 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 731 order: 1 2022-12-04 03:47:24,452 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 738 order: 1 2022-12-04 03:47:24,560 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 749 order: 1 2022-12-04 03:47:24,571 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 750 order: 1 2022-12-04 03:47:24,581 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 751 order: 1 2022-12-04 03:47:24,603 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 753 order: 1 2022-12-04 03:47:24,613 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 754 order: 1 2022-12-04 03:47:24,643 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 757 order: 1 2022-12-04 03:47:24,654 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 758 order: 1 2022-12-04 03:47:24,664 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 759 order: 1 2022-12-04 03:47:24,674 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 760 order: 1 2022-12-04 03:47:24,684 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Excluding off-image object: 761, order 1 2022-12-04 03:47:24,694 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Excluding off-image object: 762, order 1 2022-12-04 03:47:24,694 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Total of 760 grism objects defined 2022-12-04 03:47:25,245 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Average of background image subtracted = 0.8123122843134357 2022-12-04 03:47:25,262 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2022-12-04 03:47:26,030 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>, []). 2022-12-04 03:47:26,032 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:47:26,032 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2022-12-04 03:47:26,035 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2022-12-04 03:47:26,742 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>,). 2022-12-04 03:47:26,744 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:47:26,744 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2022-12-04 03:47:26,747 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2022-12-04 03:47:27,465 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>,). 2022-12-04 03:47:27,467 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-12-04 03:47:29,480 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field done 2022-12-04 03:47:30,224 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>,). 2022-12-04 03:47:30,226 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10} 2022-12-04 03:47:30,245 - stpipe.Spec2Pipeline.extract_2d - INFO - EXP_TYPE is NIS_WFSS 2022-12-04 03:47:30,260 - stpipe.Spec2Pipeline.extract_2d - INFO - Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:47:30,597 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 3 order: 1 2022-12-04 03:47:30,648 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 8 order: 1 2022-12-04 03:47:31,048 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 46 order: 1 2022-12-04 03:47:31,337 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 73 order: 1 2022-12-04 03:47:31,410 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 80 order: 1 2022-12-04 03:47:31,466 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 85 order: 1 2022-12-04 03:47:31,584 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 96 order: 1 2022-12-04 03:47:31,672 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 104 order: 1 2022-12-04 03:47:31,682 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 105 order: 1 2022-12-04 03:47:31,829 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 118 order: 1 2022-12-04 03:47:31,841 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 119 order: 1 2022-12-04 03:47:32,110 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 145 order: 1 2022-12-04 03:47:32,123 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 146 order: 1 2022-12-04 03:47:32,152 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 149 order: 1 2022-12-04 03:47:32,286 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 161 order: 1 2022-12-04 03:47:32,352 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 167 order: 1 2022-12-04 03:47:32,445 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 176 order: 1 2022-12-04 03:47:32,579 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 189 order: 1 2022-12-04 03:47:32,634 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 194 order: 1 2022-12-04 03:47:32,981 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 226 order: 1 2022-12-04 03:47:33,109 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 237 order: 1 2022-12-04 03:47:33,217 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 247 order: 1 2022-12-04 03:47:33,230 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 248 order: 1 2022-12-04 03:47:33,327 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 256 order: 1 2022-12-04 03:47:33,452 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 268 order: 1 2022-12-04 03:47:33,755 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 297 order: 1 2022-12-04 03:47:33,781 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 299 order: 1 2022-12-04 03:47:33,821 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 303 order: 1 2022-12-04 03:47:33,944 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 313 order: 1 2022-12-04 03:47:34,076 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 325 order: 1 2022-12-04 03:47:34,140 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 331 order: 1 2022-12-04 03:47:34,222 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 339 order: 1 2022-12-04 03:47:34,253 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 342 order: 1 2022-12-04 03:47:34,422 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 355 order: 1 2022-12-04 03:47:34,469 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 359 order: 1 2022-12-04 03:47:34,910 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 400 order: 1 2022-12-04 03:47:35,123 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 420 order: 1 2022-12-04 03:47:35,242 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 431 order: 1 2022-12-04 03:47:35,286 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 435 order: 1 2022-12-04 03:47:35,397 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 445 order: 1 2022-12-04 03:47:35,439 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 449 order: 1 2022-12-04 03:47:35,603 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 464 order: 1 2022-12-04 03:47:35,636 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 467 order: 1 2022-12-04 03:47:35,695 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 472 order: 1 2022-12-04 03:47:35,806 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 483 order: 1 2022-12-04 03:47:35,859 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 488 order: 1 2022-12-04 03:47:35,878 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 490 order: 1 2022-12-04 03:47:35,952 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 497 order: 1 2022-12-04 03:47:36,190 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 518 order: 1 2022-12-04 03:47:36,200 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 519 order: 1 2022-12-04 03:47:36,213 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 520 order: 1 2022-12-04 03:47:36,246 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 523 order: 1 2022-12-04 03:47:36,332 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 531 order: 1 2022-12-04 03:47:36,669 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 560 order: 1 2022-12-04 03:47:37,020 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 592 order: 1 2022-12-04 03:47:37,357 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 623 order: 1 2022-12-04 03:47:37,664 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 654 order: 1 2022-12-04 03:47:37,768 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 664 order: 1 2022-12-04 03:47:37,886 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 676 order: 1 2022-12-04 03:47:37,905 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 678 order: 1 2022-12-04 03:47:37,952 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 682 order: 1 2022-12-04 03:47:38,018 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 688 order: 1 2022-12-04 03:47:38,101 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 696 order: 1 2022-12-04 03:47:38,208 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 706 order: 1 2022-12-04 03:47:38,464 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 730 order: 1 2022-12-04 03:47:38,474 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 731 order: 1 2022-12-04 03:47:38,548 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 738 order: 1 2022-12-04 03:47:38,659 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 749 order: 1 2022-12-04 03:47:38,669 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 750 order: 1 2022-12-04 03:47:38,678 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 751 order: 1 2022-12-04 03:47:38,700 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 753 order: 1 2022-12-04 03:47:38,713 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 754 order: 1 2022-12-04 03:47:38,747 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 757 order: 1 2022-12-04 03:47:38,759 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 758 order: 1 2022-12-04 03:47:38,769 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 759 order: 1 2022-12-04 03:47:38,778 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 760 order: 1 2022-12-04 03:47:38,788 - stpipe.Spec2Pipeline.extract_2d - INFO - Excluding off-image object: 761, order 1 2022-12-04 03:47:38,797 - stpipe.Spec2Pipeline.extract_2d - INFO - Excluding off-image object: 762, order 1 2022-12-04 03:47:38,799 - stpipe.Spec2Pipeline.extract_2d - INFO - Total of 10 grism objects defined 2022-12-04 03:47:38,817 - stpipe.Spec2Pipeline.extract_2d - INFO - Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:47:38,817 - stpipe.Spec2Pipeline.extract_2d - INFO - Extracting 10 grism objects 2022-12-04 03:47:39,028 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 432 order: 1: 2022-12-04 03:47:39,028 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1346, xmax:1641), (ymin:1182, ymax:1467) 2022-12-04 03:47:39,405 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 477 order: 1: 2022-12-04 03:47:39,405 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:989, xmax:1290), (ymin:1383, ymax:1558) 2022-12-04 03:47:39,727 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 450 order: 1: 2022-12-04 03:47:39,727 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:661, xmax:916), (ymin:1246, ymax:1493) 2022-12-04 03:47:40,049 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 322 order: 1: 2022-12-04 03:47:40,049 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:672, xmax:943), (ymin:871, ymax:1024) 2022-12-04 03:47:40,358 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 456 order: 1: 2022-12-04 03:47:40,359 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:814, xmax:1041), (ymin:1261, ymax:1390) 2022-12-04 03:47:40,664 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 104 order: 1: 2022-12-04 03:47:40,664 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1870, xmax:2048), (ymin:286, ymax:542) 2022-12-04 03:47:40,980 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 675 order: 1: 2022-12-04 03:47:40,980 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1420, xmax:1611), (ymin:1861, ymax:1996) 2022-12-04 03:47:41,297 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 220 order: 1: 2022-12-04 03:47:41,297 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:691, xmax:887), (ymin:671.3684781855097, ymax:681.3684781855097) 2022-12-04 03:47:41,588 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 678 order: 1: 2022-12-04 03:47:41,588 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:0, xmax:284), (ymin:1860, ymax:2028) 2022-12-04 03:47:42,381 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 15 order: 1: 2022-12-04 03:47:42,382 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:430, xmax:643), (ymin:52, ymax:185) 2022-12-04 03:47:42,772 - stpipe.Spec2Pipeline.extract_2d - INFO - Finished extractions 2022-12-04 03:47:42,776 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d done 2022-12-04 03:47:43,144 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). 2022-12-04 03:47:43,145 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None} 2022-12-04 03:47:43,151 - stpipe.Spec2Pipeline.srctype - INFO - Input EXP_TYPE is NIS_WFSS 2022-12-04 03:47:43,152 - stpipe.Spec2Pipeline.srctype - INFO - source_id=432, type=EXTENDED 2022-12-04 03:47:43,153 - stpipe.Spec2Pipeline.srctype - INFO - source_id=477, type=EXTENDED 2022-12-04 03:47:43,154 - stpipe.Spec2Pipeline.srctype - INFO - source_id=450, type=EXTENDED 2022-12-04 03:47:43,155 - stpipe.Spec2Pipeline.srctype - INFO - source_id=322, type=EXTENDED 2022-12-04 03:47:43,156 - stpipe.Spec2Pipeline.srctype - INFO - source_id=456, type=EXTENDED 2022-12-04 03:47:43,156 - stpipe.Spec2Pipeline.srctype - INFO - source_id=104, type=EXTENDED 2022-12-04 03:47:43,157 - stpipe.Spec2Pipeline.srctype - INFO - source_id=675, type=EXTENDED 2022-12-04 03:47:43,158 - stpipe.Spec2Pipeline.srctype - INFO - source_id=220, type=POINT 2022-12-04 03:47:43,159 - stpipe.Spec2Pipeline.srctype - INFO - source_id=678, type=EXTENDED 2022-12-04 03:47:43,159 - stpipe.Spec2Pipeline.srctype - INFO - source_id=15, type=EXTENDED 2022-12-04 03:47:43,161 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype done 2022-12-04 03:47:43,508 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). 2022-12-04 03:47:43,509 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:47:43,509 - stpipe.Spec2Pipeline.straylight - INFO - Step skipped. 2022-12-04 03:47:43,512 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight done 2022-12-04 03:47:43,859 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). 2022-12-04 03:47:43,859 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:47:43,859 - stpipe.Spec2Pipeline.fringe - INFO - Step skipped. 2022-12-04 03:47:43,862 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe done 2022-12-04 03:47:44,210 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). 2022-12-04 03:47:44,211 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:47:44,211 - stpipe.Spec2Pipeline.pathloss - INFO - Step skipped. 2022-12-04 03:47:44,213 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss done 2022-12-04 03:47:44,562 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). 2022-12-04 03:47:44,563 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:47:44,563 - stpipe.Spec2Pipeline.barshadow - INFO - Step skipped. 2022-12-04 03:47:44,566 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow done 2022-12-04 03:47:44,916 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). 2022-12-04 03:47:44,917 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'} 2022-12-04 03:47:44,917 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step skipped. 2022-12-04 03:47:44,919 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam done 2022-12-04 03:47:45,269 - stpipe.Spec2Pipeline.photom - INFO - Step photom running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). 2022-12-04 03:47:45,269 - stpipe.Spec2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:47:45,299 - stpipe.Spec2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits 2022-12-04 03:47:45,299 - stpipe.Spec2Pipeline.photom - INFO - Using area reference file: N/A 2022-12-04 03:47:46,002 - stpipe.Spec2Pipeline.photom - INFO - Using instrument: NIRISS 2022-12-04 03:47:46,002 - stpipe.Spec2Pipeline.photom - INFO - detector: NIS 2022-12-04 03:47:46,002 - stpipe.Spec2Pipeline.photom - INFO - exp_type: NIS_WFSS 2022-12-04 03:47:46,002 - stpipe.Spec2Pipeline.photom - INFO - filter: GR150C 2022-12-04 03:47:46,002 - stpipe.Spec2Pipeline.photom - INFO - pupil: F115W 2022-12-04 03:47:46,041 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 432, order 1 2022-12-04 03:47:46,042 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:47:46,053 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 477, order 1 2022-12-04 03:47:46,054 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:47:46,064 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 450, order 1 2022-12-04 03:47:46,064 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:47:46,074 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 322, order 1 2022-12-04 03:47:46,075 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:47:46,084 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 456, order 1 2022-12-04 03:47:46,085 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:47:46,094 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 104, order 1 2022-12-04 03:47:46,094 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:47:46,105 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 675, order 1 2022-12-04 03:47:46,105 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:47:46,114 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 220, order 1 2022-12-04 03:47:46,114 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:47:46,123 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 678, order 1 2022-12-04 03:47:46,123 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:47:46,133 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 15, order 1 2022-12-04 03:47:46,134 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:47:46,148 - stpipe.Spec2Pipeline.photom - INFO - Step photom done 2022-12-04 03:47:46,535 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_cal.fits>,). 2022-12-04 03:47:46,537 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:47:46,544 - stpipe.Spec2Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:47:46,557 - stpipe.Spec2Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:47:46,592 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:47:46,592 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:46,594 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=284 2022-12-04 03:47:46,667 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:47:46,667 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:46,669 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=174 2022-12-04 03:47:46,739 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:47:46,740 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:46,742 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 2022-12-04 03:47:46,811 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:47:46,812 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:46,813 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=152 2022-12-04 03:47:46,883 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:47:46,883 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:46,885 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=128 2022-12-04 03:47:46,955 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:47:46,955 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:46,957 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=177, ystart=0, ystop=255 2022-12-04 03:47:47,044 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:47:47,045 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:47,047 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=134 2022-12-04 03:47:47,157 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:47:47,160 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 2022-12-04 03:47:47,250 - stpipe.Spec2Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:47:47,390 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:47:47,390 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:47,392 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=283, ystart=0, ystop=167 2022-12-04 03:47:47,462 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:47:47,463 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:47:47,464 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=132 2022-12-04 03:47:47,885 - stpipe.Spec2Pipeline.extract_1d - INFO - Saved model in jw01324001001_05101_00002_nis_x1d.fits 2022-12-04 03:47:47,885 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:47:47,886 - stpipe.Spec2Pipeline - INFO - Finished processing product jw01324001001_05101_00002_nis 2022-12-04 03:47:47,886 - stpipe.Spec2Pipeline - INFO - Ending calwebb_spec2 2022-12-04 03:47:47,886 - stpipe.Spec2Pipeline - INFO - Results used CRDS context: jwst_1019.pmap 2022-12-04 03:47:48,935 - stpipe.Spec2Pipeline - INFO - Saved model in jw01324001001_05101_00002_nis_cal.fits 2022-12-04 03:47:48,935 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline done 2022-12-04 03:47:50,717 - CRDS - ERROR - Error determining best reference for 'pars-residualfringestep' = Unknown reference type 'pars-residualfringestep' 2022-12-04 03:47:50,725 - stpipe - INFO - PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0005.asdf 2022-12-04 03:47:50,762 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2022-12-04 03:47:50,764 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-12-04 03:47:50,765 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-12-04 03:47:50,766 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2022-12-04 03:47:50,766 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2022-12-04 03:47:50,767 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2022-12-04 03:47:50,770 - stpipe.Spec2Pipeline.master_background_mos - INFO - MasterBackgroundMosStep instance created. 2022-12-04 03:47:50,771 - stpipe.Spec2Pipeline.master_background_mos.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:47:50,772 - stpipe.Spec2Pipeline.master_background_mos.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:47:50,772 - stpipe.Spec2Pipeline.master_background_mos.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:47:50,773 - stpipe.Spec2Pipeline.master_background_mos.photom - INFO - PhotomStep instance created. 2022-12-04 03:47:50,774 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2022-12-04 03:47:50,775 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-12-04 03:47:50,776 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2022-12-04 03:47:50,776 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2022-12-04 03:47:50,777 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2022-12-04 03:47:50,778 - stpipe.Spec2Pipeline.residual_fringe - INFO - ResidualFringeStep instance created. 2022-12-04 03:47:50,779 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2022-12-04 03:47:50,779 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2022-12-04 03:47:50,780 - stpipe.Spec2Pipeline.wfss_contam - INFO - WfssContamStep instance created. 2022-12-04 03:47:50,781 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2022-12-04 03:47:50,782 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2022-12-04 03:47:50,784 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2022-12-04 03:47:50,785 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-12-04 03:47:51,324 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec2_007_asn.json',). 2022-12-04 03:47:51,337 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} 2022-12-04 03:47:51,395 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw01324001001_05101_00001_nis_rate.fits' reftypes = ['apcorr', 'area', 'barshadow', 'camera', 'collimator', 'cubepar', 'dflat', 'disperser', 'distortion', 'drizpars', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'mrsxartcorr', 'msa', 'msaoper', 'ote', 'pathloss', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap', 'wfssbkg'] 2022-12-04 03:47:51,402 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. 2022-12-04 03:47:51,402 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2022-12-04 03:47:51,403 - stpipe.Spec2Pipeline - INFO - Prefetch for BARSHADOW reference file is 'N/A'. 2022-12-04 03:47:51,403 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-12-04 03:47:51,403 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-12-04 03:47:51,403 - stpipe.Spec2Pipeline - INFO - Prefetch for CUBEPAR reference file is 'N/A'. 2022-12-04 03:47:51,403 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-12-04 03:47:51,403 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-12-04 03:47:51,403 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf'. 2022-12-04 03:47:51,404 - stpipe.Spec2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. 2022-12-04 03:47:51,405 - stpipe.Spec2Pipeline - INFO - Prefetch for EXTRACT1D reference file is 'N/A'. 2022-12-04 03:47:51,405 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-12-04 03:47:51,405 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is 'N/A'. 2022-12-04 03:47:51,405 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0279.fits'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for MRSXARTCORR reference file is 'N/A'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for MSAOPER reference file is 'N/A'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for PATHLOSS reference file is 'N/A'. 2022-12-04 03:47:51,407 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. 2022-12-04 03:47:51,408 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-12-04 03:47:51,408 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-12-04 03:47:51,408 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECKERNEL reference file is 'N/A'. 2022-12-04 03:47:51,408 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECPROFILE reference file is 'N/A'. 2022-12-04 03:47:51,408 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECTRACE reference file is 'N/A'. 2022-12-04 03:47:51,408 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf'. 2022-12-04 03:47:51,410 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2022-12-04 03:47:51,410 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf'. 2022-12-04 03:47:51,411 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVEMAP reference file is 'N/A'. 2022-12-04 03:47:51,411 - stpipe.Spec2Pipeline - INFO - Prefetch for WFSSBKG reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0023.fits'. 2022-12-04 03:47:51,413 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2022-12-04 03:47:51,419 - stpipe.Spec2Pipeline - INFO - Processing product jw01324001001_05101_00001_nis 2022-12-04 03:47:51,419 - stpipe.Spec2Pipeline - INFO - Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_05101_00001_nis_rate.fits ... 2022-12-04 03:47:51,458 - stpipe.Spec2Pipeline - INFO - Using sourcecat file jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:47:51,459 - stpipe.Spec2Pipeline - INFO - Using segmentation map jw01324-o001_t001_niriss_clear-f115w_segm.fits 2022-12-04 03:47:51,460 - stpipe.Spec2Pipeline - INFO - Using direct image jw01324-o001_t001_niriss_clear-f115w_i2d.fits 2022-12-04 03:47:51,796 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>,). 2022-12-04 03:47:51,797 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-12-04 03:47:52,111 - stpipe.Spec2Pipeline.assign_wcs - INFO - Added Barycentric velocity correction: 1.0000819578442075 2022-12-04 03:47:52,323 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-12-04 03:47:52,336 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-12-04 03:47:52,672 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>, []). 2022-12-04 03:47:52,673 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'bsub', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} 2022-12-04 03:47:52,697 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Using WFSSBKG reference file /grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0023.fits 2022-12-04 03:47:52,698 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Using WavelengthRange reference file /grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf 2022-12-04 03:47:52,853 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:47:53,168 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 3 order: 1 2022-12-04 03:47:53,216 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 8 order: 1 2022-12-04 03:47:53,570 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 46 order: 1 2022-12-04 03:47:53,828 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 73 order: 1 2022-12-04 03:47:53,893 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 80 order: 1 2022-12-04 03:47:53,940 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 85 order: 1 2022-12-04 03:47:54,042 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 96 order: 1 2022-12-04 03:47:54,116 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 104 order: 1 2022-12-04 03:47:54,126 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 105 order: 1 2022-12-04 03:47:54,246 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 118 order: 1 2022-12-04 03:47:54,256 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 119 order: 1 2022-12-04 03:47:54,499 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 145 order: 1 2022-12-04 03:47:54,537 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 149 order: 1 2022-12-04 03:47:54,649 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 161 order: 1 2022-12-04 03:47:54,706 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 167 order: 1 2022-12-04 03:47:54,794 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 176 order: 1 2022-12-04 03:47:54,915 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 189 order: 1 2022-12-04 03:47:54,962 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 194 order: 1 2022-12-04 03:47:55,056 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 204 order: 1 2022-12-04 03:47:55,261 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 226 order: 1 2022-12-04 03:47:55,363 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 237 order: 1 2022-12-04 03:47:55,457 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 247 order: 1 2022-12-04 03:47:55,466 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 248 order: 1 2022-12-04 03:47:55,540 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 256 order: 1 2022-12-04 03:47:55,651 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 268 order: 1 2022-12-04 03:47:55,927 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 297 order: 1 2022-12-04 03:47:55,945 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 299 order: 1 2022-12-04 03:47:55,983 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 303 order: 1 2022-12-04 03:47:56,076 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 313 order: 1 2022-12-04 03:47:56,188 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 325 order: 1 2022-12-04 03:47:56,225 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 329 order: 1 2022-12-04 03:47:56,244 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 331 order: 1 2022-12-04 03:47:56,320 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 339 order: 1 2022-12-04 03:47:56,348 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 342 order: 1 2022-12-04 03:47:56,405 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 348 order: 1 2022-12-04 03:47:56,471 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 355 order: 1 2022-12-04 03:47:56,509 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 359 order: 1 2022-12-04 03:47:56,896 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 400 order: 1 2022-12-04 03:47:57,086 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 420 order: 1 2022-12-04 03:47:57,190 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 431 order: 1 2022-12-04 03:47:57,227 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 435 order: 1 2022-12-04 03:47:57,320 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 445 order: 1 2022-12-04 03:47:57,357 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 449 order: 1 2022-12-04 03:47:57,497 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 464 order: 1 2022-12-04 03:47:57,525 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 467 order: 1 2022-12-04 03:47:57,572 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 472 order: 1 2022-12-04 03:47:57,677 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 483 order: 1 2022-12-04 03:47:57,727 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 488 order: 1 2022-12-04 03:47:57,746 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 490 order: 1 2022-12-04 03:47:57,811 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 497 order: 1 2022-12-04 03:47:57,858 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 502 order: 1 2022-12-04 03:47:58,013 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 518 order: 1 2022-12-04 03:47:58,023 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 519 order: 1 2022-12-04 03:47:58,033 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 520 order: 1 2022-12-04 03:47:58,060 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 523 order: 1 2022-12-04 03:47:58,134 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 531 order: 1 2022-12-04 03:47:58,705 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 592 order: 1 2022-12-04 03:47:58,993 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 623 order: 1 2022-12-04 03:47:59,283 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 654 order: 1 2022-12-04 03:47:59,377 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 664 order: 1 2022-12-04 03:47:59,490 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 676 order: 1 2022-12-04 03:47:59,508 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 678 order: 1 2022-12-04 03:47:59,546 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 682 order: 1 2022-12-04 03:47:59,601 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 688 order: 1 2022-12-04 03:47:59,677 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 696 order: 1 2022-12-04 03:47:59,771 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 706 order: 1 2022-12-04 03:47:59,993 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 730 order: 1 2022-12-04 03:48:00,002 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 731 order: 1 2022-12-04 03:48:00,067 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 738 order: 1 2022-12-04 03:48:00,172 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 749 order: 1 2022-12-04 03:48:00,218 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 754 order: 1 2022-12-04 03:48:00,266 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 759 order: 1 2022-12-04 03:48:00,285 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Partial order on detector for obj: 761 order: 1 2022-12-04 03:48:00,295 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Total of 762 grism objects defined 2022-12-04 03:48:00,773 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Average of background image subtracted = 0.8096614187973705 2022-12-04 03:48:00,788 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2022-12-04 03:48:01,178 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>, []). 2022-12-04 03:48:01,179 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:48:01,179 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2022-12-04 03:48:01,182 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2022-12-04 03:48:01,509 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>,). 2022-12-04 03:48:01,510 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:48:01,510 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2022-12-04 03:48:01,512 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2022-12-04 03:48:01,843 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>,). 2022-12-04 03:48:01,844 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-12-04 03:48:02,464 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field done 2022-12-04 03:48:02,820 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>,). 2022-12-04 03:48:02,821 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10} 2022-12-04 03:48:02,836 - stpipe.Spec2Pipeline.extract_2d - INFO - EXP_TYPE is NIS_WFSS 2022-12-04 03:48:02,851 - stpipe.Spec2Pipeline.extract_2d - INFO - Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:48:03,161 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 3 order: 1 2022-12-04 03:48:03,211 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 8 order: 1 2022-12-04 03:48:03,597 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 46 order: 1 2022-12-04 03:48:03,888 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 73 order: 1 2022-12-04 03:48:03,959 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 80 order: 1 2022-12-04 03:48:04,014 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 85 order: 1 2022-12-04 03:48:04,130 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 96 order: 1 2022-12-04 03:48:04,217 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 104 order: 1 2022-12-04 03:48:04,227 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 105 order: 1 2022-12-04 03:48:04,369 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 118 order: 1 2022-12-04 03:48:04,381 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 119 order: 1 2022-12-04 03:48:04,649 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 145 order: 1 2022-12-04 03:48:04,689 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 149 order: 1 2022-12-04 03:48:04,819 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 161 order: 1 2022-12-04 03:48:04,883 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 167 order: 1 2022-12-04 03:48:04,975 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 176 order: 1 2022-12-04 03:48:05,105 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 189 order: 1 2022-12-04 03:48:05,158 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 194 order: 1 2022-12-04 03:48:05,266 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 204 order: 1 2022-12-04 03:48:05,484 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 226 order: 1 2022-12-04 03:48:05,597 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 237 order: 1 2022-12-04 03:48:05,702 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 247 order: 1 2022-12-04 03:48:05,714 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 248 order: 1 2022-12-04 03:48:05,797 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 256 order: 1 2022-12-04 03:48:05,920 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 268 order: 1 2022-12-04 03:48:06,205 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 297 order: 1 2022-12-04 03:48:06,230 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 299 order: 1 2022-12-04 03:48:06,267 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 303 order: 1 2022-12-04 03:48:06,379 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 313 order: 1 2022-12-04 03:48:06,501 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 325 order: 1 2022-12-04 03:48:06,546 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 329 order: 1 2022-12-04 03:48:06,565 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 331 order: 1 2022-12-04 03:48:06,653 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 339 order: 1 2022-12-04 03:48:06,687 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 342 order: 1 2022-12-04 03:48:06,763 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 348 order: 1 2022-12-04 03:48:06,845 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 355 order: 1 2022-12-04 03:48:06,893 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 359 order: 1 2022-12-04 03:48:07,319 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 400 order: 1 2022-12-04 03:48:07,527 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 420 order: 1 2022-12-04 03:48:07,646 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 431 order: 1 2022-12-04 03:48:07,692 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 435 order: 1 2022-12-04 03:48:07,811 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 445 order: 1 2022-12-04 03:48:07,855 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 449 order: 1 2022-12-04 03:48:08,031 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 464 order: 1 2022-12-04 03:48:08,067 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 467 order: 1 2022-12-04 03:48:08,134 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 472 order: 1 2022-12-04 03:48:08,252 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 483 order: 1 2022-12-04 03:48:08,307 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 488 order: 1 2022-12-04 03:48:08,327 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 490 order: 1 2022-12-04 03:48:08,399 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 497 order: 1 2022-12-04 03:48:08,451 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 502 order: 1 2022-12-04 03:48:08,625 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 518 order: 1 2022-12-04 03:48:08,635 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 519 order: 1 2022-12-04 03:48:08,647 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 520 order: 1 2022-12-04 03:48:08,679 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 523 order: 1 2022-12-04 03:48:08,764 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 531 order: 1 2022-12-04 03:48:09,489 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 592 order: 1 2022-12-04 03:48:09,824 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 623 order: 1 2022-12-04 03:48:10,136 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 654 order: 1 2022-12-04 03:48:10,235 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 664 order: 1 2022-12-04 03:48:10,349 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 676 order: 1 2022-12-04 03:48:10,372 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 678 order: 1 2022-12-04 03:48:10,418 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 682 order: 1 2022-12-04 03:48:10,484 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 688 order: 1 2022-12-04 03:48:10,570 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 696 order: 1 2022-12-04 03:48:10,680 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 706 order: 1 2022-12-04 03:48:10,938 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 730 order: 1 2022-12-04 03:48:10,948 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 731 order: 1 2022-12-04 03:48:11,024 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 738 order: 1 2022-12-04 03:48:11,136 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 749 order: 1 2022-12-04 03:48:11,235 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 758 order: 1 2022-12-04 03:48:11,244 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 759 order: 1 2022-12-04 03:48:11,264 - stpipe.Spec2Pipeline.extract_2d - INFO - Partial order on detector for obj: 761 order: 1 2022-12-04 03:48:11,275 - stpipe.Spec2Pipeline.extract_2d - INFO - Total of 10 grism objects defined 2022-12-04 03:48:11,288 - stpipe.Spec2Pipeline.extract_2d - INFO - Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv 2022-12-04 03:48:11,289 - stpipe.Spec2Pipeline.extract_2d - INFO - Extracting 10 grism objects 2022-12-04 03:48:11,548 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 432 order: 1: 2022-12-04 03:48:11,548 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1338, xmax:1633), (ymin:1178, ymax:1462) 2022-12-04 03:48:11,952 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 477 order: 1: 2022-12-04 03:48:11,952 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:981, xmax:1282), (ymin:1379, ymax:1553) 2022-12-04 03:48:12,325 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 450 order: 1: 2022-12-04 03:48:12,325 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:653, xmax:908), (ymin:1242, ymax:1489) 2022-12-04 03:48:12,695 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 322 order: 1: 2022-12-04 03:48:12,696 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:664, xmax:935), (ymin:866, ymax:1020) 2022-12-04 03:48:13,058 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 456 order: 1: 2022-12-04 03:48:13,058 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:806, xmax:1033), (ymin:1256, ymax:1386) 2022-12-04 03:48:13,396 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 104 order: 1: 2022-12-04 03:48:13,397 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1862, xmax:2048), (ymin:282, ymax:537) 2022-12-04 03:48:13,747 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 675 order: 1: 2022-12-04 03:48:13,748 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:1412, xmax:1603), (ymin:1856, ymax:1992) 2022-12-04 03:48:14,101 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 220 order: 1: 2022-12-04 03:48:14,101 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:683, xmax:879), (ymin:666.8592440605073, ymax:676.8592440605073) 2022-12-04 03:48:14,450 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 678 order: 1: 2022-12-04 03:48:14,451 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:0, xmax:276), (ymin:1856, ymax:2023) 2022-12-04 03:48:14,797 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extracted for obj: 15 order: 1: 2022-12-04 03:48:14,798 - stpipe.Spec2Pipeline.extract_2d - INFO - Subarray extents are: (xmin:422, xmax:635), (ymin:48, ymax:180) 2022-12-04 03:48:16,202 - stpipe.Spec2Pipeline.extract_2d - INFO - Finished extractions 2022-12-04 03:48:16,208 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d done 2022-12-04 03:48:16,995 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). 2022-12-04 03:48:16,996 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None} 2022-12-04 03:48:17,004 - stpipe.Spec2Pipeline.srctype - INFO - Input EXP_TYPE is NIS_WFSS 2022-12-04 03:48:17,005 - stpipe.Spec2Pipeline.srctype - INFO - source_id=432, type=EXTENDED 2022-12-04 03:48:17,006 - stpipe.Spec2Pipeline.srctype - INFO - source_id=477, type=EXTENDED 2022-12-04 03:48:17,006 - stpipe.Spec2Pipeline.srctype - INFO - source_id=450, type=EXTENDED 2022-12-04 03:48:17,007 - stpipe.Spec2Pipeline.srctype - INFO - source_id=322, type=EXTENDED 2022-12-04 03:48:17,008 - stpipe.Spec2Pipeline.srctype - INFO - source_id=456, type=EXTENDED 2022-12-04 03:48:17,009 - stpipe.Spec2Pipeline.srctype - INFO - source_id=104, type=EXTENDED 2022-12-04 03:48:17,010 - stpipe.Spec2Pipeline.srctype - INFO - source_id=675, type=EXTENDED 2022-12-04 03:48:17,011 - stpipe.Spec2Pipeline.srctype - INFO - source_id=220, type=POINT 2022-12-04 03:48:17,011 - stpipe.Spec2Pipeline.srctype - INFO - source_id=678, type=EXTENDED 2022-12-04 03:48:17,012 - stpipe.Spec2Pipeline.srctype - INFO - source_id=15, type=EXTENDED 2022-12-04 03:48:17,014 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype done 2022-12-04 03:48:17,760 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). 2022-12-04 03:48:17,761 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:48:17,761 - stpipe.Spec2Pipeline.straylight - INFO - Step skipped. 2022-12-04 03:48:17,764 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight done 2022-12-04 03:48:18,511 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). 2022-12-04 03:48:18,512 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} 2022-12-04 03:48:18,513 - stpipe.Spec2Pipeline.fringe - INFO - Step skipped. 2022-12-04 03:48:18,515 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe done 2022-12-04 03:48:19,260 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). 2022-12-04 03:48:19,261 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:48:19,261 - stpipe.Spec2Pipeline.pathloss - INFO - Step skipped. 2022-12-04 03:48:19,264 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss done 2022-12-04 03:48:20,012 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). 2022-12-04 03:48:20,013 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:48:20,014 - stpipe.Spec2Pipeline.barshadow - INFO - Step skipped. 2022-12-04 03:48:20,016 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow done 2022-12-04 03:48:20,772 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). 2022-12-04 03:48:20,773 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'} 2022-12-04 03:48:20,773 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step skipped. 2022-12-04 03:48:20,776 - stpipe.Spec2Pipeline.wfss_contam - INFO - Step wfss_contam done 2022-12-04 03:48:21,522 - stpipe.Spec2Pipeline.photom - INFO - Step photom running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). 2022-12-04 03:48:21,524 - stpipe.Spec2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} 2022-12-04 03:48:21,561 - stpipe.Spec2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits 2022-12-04 03:48:21,561 - stpipe.Spec2Pipeline.photom - INFO - Using area reference file: N/A 2022-12-04 03:48:22,380 - stpipe.Spec2Pipeline.photom - INFO - Using instrument: NIRISS 2022-12-04 03:48:22,380 - stpipe.Spec2Pipeline.photom - INFO - detector: NIS 2022-12-04 03:48:22,380 - stpipe.Spec2Pipeline.photom - INFO - exp_type: NIS_WFSS 2022-12-04 03:48:22,380 - stpipe.Spec2Pipeline.photom - INFO - filter: GR150C 2022-12-04 03:48:22,380 - stpipe.Spec2Pipeline.photom - INFO - pupil: F115W 2022-12-04 03:48:22,442 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 432, order 1 2022-12-04 03:48:22,442 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:48:22,455 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 477, order 1 2022-12-04 03:48:22,455 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:48:22,465 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 450, order 1 2022-12-04 03:48:22,466 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:48:22,477 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 322, order 1 2022-12-04 03:48:22,477 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:48:22,487 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 456, order 1 2022-12-04 03:48:22,487 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:48:22,497 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 104, order 1 2022-12-04 03:48:22,497 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:48:22,508 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 675, order 1 2022-12-04 03:48:22,508 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:48:22,517 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 220, order 1 2022-12-04 03:48:22,518 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:48:22,527 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 678, order 1 2022-12-04 03:48:22,527 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:48:22,537 - stpipe.Spec2Pipeline.photom - INFO - Working on slit 15, order 1 2022-12-04 03:48:22,538 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 16.6386 2022-12-04 03:48:22,552 - stpipe.Spec2Pipeline.photom - INFO - Step photom done 2022-12-04 03:48:23,384 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_cal.fits>,). 2022-12-04 03:48:23,386 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} 2022-12-04 03:48:23,395 - stpipe.Spec2Pipeline.extract_1d - INFO - No EXTRACT1D reference file will be used 2022-12-04 03:48:23,410 - stpipe.Spec2Pipeline.extract_1d - INFO - Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits 2022-12-04 03:48:23,453 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 432 2022-12-04 03:48:23,453 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:23,456 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=283 2022-12-04 03:48:23,542 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 477 2022-12-04 03:48:23,543 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:23,545 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=173 2022-12-04 03:48:23,625 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 450 2022-12-04 03:48:23,626 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:23,628 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 2022-12-04 03:48:23,710 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 322 2022-12-04 03:48:23,711 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:23,714 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=153 2022-12-04 03:48:23,820 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 456 2022-12-04 03:48:23,820 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:23,823 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=129 2022-12-04 03:48:23,911 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 104 2022-12-04 03:48:23,911 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:23,914 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=185, ystart=0, ystop=254 2022-12-04 03:48:23,991 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 675 2022-12-04 03:48:23,992 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:23,994 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=135 2022-12-04 03:48:24,073 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 220 2022-12-04 03:48:24,075 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 2022-12-04 03:48:24,150 - stpipe.Spec2Pipeline.extract_1d - INFO - Applying Aperture correction. 2022-12-04 03:48:24,278 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 678 2022-12-04 03:48:24,278 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:24,281 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=275, ystart=0, ystop=166 2022-12-04 03:48:24,361 - stpipe.Spec2Pipeline.extract_1d - INFO - Working on slit 15 2022-12-04 03:48:24,362 - stpipe.Spec2Pipeline.extract_1d - INFO - Setting use_source_posn to False for source type EXTENDED 2022-12-04 03:48:24,364 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=131 2022-12-04 03:48:24,824 - stpipe.Spec2Pipeline.extract_1d - INFO - Saved model in jw01324001001_05101_00001_nis_x1d.fits 2022-12-04 03:48:24,824 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d done 2022-12-04 03:48:24,824 - stpipe.Spec2Pipeline - INFO - Finished processing product jw01324001001_05101_00001_nis 2022-12-04 03:48:24,825 - stpipe.Spec2Pipeline - INFO - Ending calwebb_spec2 2022-12-04 03:48:24,825 - stpipe.Spec2Pipeline - INFO - Results used CRDS context: jwst_1019.pmap 2022-12-04 03:48:25,974 - stpipe.Spec2Pipeline - INFO - Saved model in jw01324001001_05101_00001_nis_cal.fits 2022-12-04 03:48:25,974 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline done -------------------------------Captured log setup------------------------------- INFO stpipe:pipeline.py:208 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0005.asdf INFO stpipe.Spec2Pipeline:step.py:366 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:366 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:366 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:366 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:366 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:366 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos:step.py:366 MasterBackgroundMosStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:366 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:366 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:366 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:366 FringeStep instance created. INFO stpipe.Spec2Pipeline.residual_fringe:step.py:366 ResidualFringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.wfss_contam:step.py:366 WfssContamStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:366 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:366 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:366 Extract1dStep instance created. INFO stpipe.Spec2Pipeline:step.py:430 Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec2_001_asn.json',). INFO stpipe.Spec2Pipeline:step.py:434 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} INFO stpipe.Spec2Pipeline:pipeline.py:358 Prefetching reference files for dataset: 'jw01324001001_03101_00001_nis_rate.fits' reftypes = ['apcorr', 'area', 'barshadow', 'camera', 'collimator', 'cubepar', 'dflat', 'disperser', 'distortion', 'drizpars', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'mrsxartcorr', 'msa', 'msaoper', 'ote', 'pathloss', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap', 'wfssbkg'] INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for BARSHADOW reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for CUBEPAR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for EXTRACT1D reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FILTEROFFSET reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0269.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MRSXARTCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MSAOPER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for PATHLOSS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECKERNEL reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECPROFILE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECTRACE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVEMAP reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WFSSBKG reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0019.fits'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:94 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:112 Processing product jw01324001001_03101_00001_nis INFO stpipe.Spec2Pipeline:calwebb_spec2.py:178 Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00001_nis_rate.fits ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:201 Using sourcecat file jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline:calwebb_spec2.py:203 Using segmentation map jw01324-o001_t001_niriss_clear-f115w_segm.fits INFO stpipe.Spec2Pipeline:calwebb_spec2.py:205 Using direct image jw01324-o001_t001_niriss_clear-f115w_i2d.fits DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:362 Science data does not allow imprint processing. Skipping "imprint_subtraction". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:368 Science data does not allow MSA flagging. Skipping "msa_flagging". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:373 Science data does not allow stray light correction. Skipping "straylight". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:383 Science data does not allow fringe correction. Skipping "fringe". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:389 Science data does not allow pathloss correction. Skipping "pathloss". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:394 Science data does not allow barshadow correction. Skipping "barshadow". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:399 Science data does not allow master background correction. Skipping "master_background_mos". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:430 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:434 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:452 Added Barycentric velocity correction: 1.0000819955764924 INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:452 Added Barycentric velocity correction: 1.0000819955764924 INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:1016 Saved model in jw01324001001_03101_00001_nis_assign_wcs.fits INFO stpipe.Spec2Pipeline.assign_wcs:step.py:546 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:430 Step bkg_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_assign_wcs.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:434 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'bsub', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} INFO stpipe.Spec2Pipeline.bkg_subtract:background_step.py:58 Using WFSSBKG reference file /grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0019.fits INFO stpipe.Spec2Pipeline.bkg_subtract:background_step.py:59 Using WavelengthRange reference file /grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv DEBUG stpipe.Spec2Pipeline.bkg_subtract:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} DEBUG stpipe.Spec2Pipeline.bkg_subtract:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 1 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 1 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 2 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 2 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 4 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 4 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 5 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 5 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 6 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 6 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 7 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 7 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 9 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 9 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 10 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 10 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 11 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 11 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 12 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 12 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 13 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 13 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 14 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 14 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 15 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 15 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 16 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 16 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 17 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 17 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 18 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 18 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 19 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 19 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 21 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 21 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 22 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 22 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 23 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 23 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 299 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 299 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 756 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 756 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 762 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 762 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:855 Total of 762 grism objects defined INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:855 Total of 762 grism objects defined DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:196 mean of [25.0, 75.0] percentile grism image = 0.8228310739581125 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:196 mean of [25.0, 75.0] percentile grism image = 0.8228310739581125 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:198 mean of [25.0, 75.0] percentile background image = 1.0008454911293663 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:198 mean of [25.0, 75.0] percentile background image = 1.0008454911293663 INFO stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:205 Average of background image subtracted = 0.811879963316367 INFO stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:205 Average of background image subtracted = 0.811879963316367 INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:1016 Saved model in jw01324001001_03101_00001_nis_bsub.fits INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:546 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:430 Step imprint_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_bsub.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:434 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:546 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:430 Step msa_flagging running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_bsub.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:434 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:546 Step msa_flagging done INFO stpipe.Spec2Pipeline.flat_field:step.py:430 Step flat_field running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_bsub.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:434 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:74 Input is ImageModel of exposure type NIS_WFSS DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_niriss_flat_0269.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Spec2Pipeline.flat_field:step.py:1016 Saved model in jw01324001001_03101_00001_nis_flat_field.fits INFO stpipe.Spec2Pipeline.flat_field:step.py:546 Step flat_field done INFO stpipe.Spec2Pipeline:calwebb_spec2.py:418 Creating WFSS e-/sec product INFO stpipe.Spec2Pipeline:calwebb_spec2.py:422 Using GAIN reference file /grp/crds/cache/references/jwst/jwst_niriss_gain_0006.fits INFO stpipe.Spec2Pipeline:calwebb_spec2.py:434 mean gain = 1.6221113 INFO stpipe.Spec2Pipeline:step.py:1016 Saved model in jw01324001001_03101_00001_nis_esec.fits INFO stpipe.Spec2Pipeline.extract_2d:step.py:430 Step extract_2d running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00001_nis_flat_field.fits>,). INFO stpipe.Spec2Pipeline.extract_2d:step.py:434 Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10} INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:61 EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:61 EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.extract_2d:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 1 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 1 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 2 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 2 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 4 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 4 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 5 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 5 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 6 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 6 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 7 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 7 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 9 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 9 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 10 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 10 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 11 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 11 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 12 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 12 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 13 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 13 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 14 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 14 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 15 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 15 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 16 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 16 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 17 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 17 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 18 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 18 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 19 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 19 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 21 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 21 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 22 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 22 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 23 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 23 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 488 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 488 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 688 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 688 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 756 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 756 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 762 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 762 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:855 Total of 10 grism objects defined INFO stpipe.Spec2Pipeline.extract_2d:util.py:855 Total of 10 grism objects defined INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:371 Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:371 Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:379 Extracting 10 grism objects INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:379 Extracting 10 grism objects DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1112, 1471), 1112 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1112, 1471), 1112 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 432 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 432 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1388, xmax:1609), (ymin:1112, ymax:1471) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1388, xmax:1609), (ymin:1112, ymax:1471) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1313, 1562), 1313 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1313, 1562), 1313 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 477 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 477 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1031, xmax:1259), (ymin:1313, ymax:1562) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1031, xmax:1259), (ymin:1313, ymax:1562) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1176, 1497), 1176 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1176, 1497), 1176 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 450 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 450 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:703, xmax:884), (ymin:1176, ymax:1497) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:703, xmax:884), (ymin:1176, ymax:1497) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (800, 1028), 800 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (800, 1028), 800 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 322 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 322 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:714, xmax:911), (ymin:800, ymax:1028) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:714, xmax:911), (ymin:800, ymax:1028) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1191, 1394), 1191 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1191, 1394), 1191 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 456 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 456 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:856, xmax:1010), (ymin:1191, ymax:1394) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:856, xmax:1010), (ymin:1191, ymax:1394) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (216, 546), 216 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (216, 546), 216 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 104 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 104 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1912, xmax:2045), (ymin:216, ymax:546) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1912, xmax:2045), (ymin:216, ymax:546) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1791, 2000), 1791 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1791, 2000), 1791 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 675 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 675 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1462, xmax:1579), (ymin:1791, ymax:2000) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1462, xmax:1579), (ymin:1791, ymax:2000) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (520, 756), 520 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (520, 756), 520 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 220 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 220 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:793.5329832043078, xmax:803.5329832043078), (ymin:520, ymax:756) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:793.5329832043078, xmax:803.5329832043078), (ymin:520, ymax:756) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1790, 2032), 1790 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1790, 2032), 1790 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 678 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 678 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:24, xmax:252), (ymin:1790, ymax:2032) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:24, xmax:252), (ymin:1790, ymax:2032) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (-17, 189), 0 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (-17, 189), 0 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 15 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 15 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:472, xmax:611), (ymin:0, ymax:189) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:472, xmax:611), (ymin:0, ymax:189) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:515 Finished extractions INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:515 Finished extractions INFO stpipe.Spec2Pipeline.extract_2d:step.py:1016 Saved model in jw01324001001_03101_00001_nis_extract_2d.fits INFO stpipe.Spec2Pipeline.extract_2d:step.py:546 Step extract_2d done INFO stpipe.Spec2Pipeline.srctype:step.py:430 Step srctype running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_extract_2d.fits>,). INFO stpipe.Spec2Pipeline.srctype:step.py:434 Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None} INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=432, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=432, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=477, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=477, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=450, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=450, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=322, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=322, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=456, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=456, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=104, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=104, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=675, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=675, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=220, type=POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=220, type=POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=678, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=678, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=15, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=15, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:step.py:1016 Saved model in jw01324001001_03101_00001_nis_srctype.fits INFO stpipe.Spec2Pipeline.srctype:step.py:546 Step srctype done INFO stpipe.Spec2Pipeline.straylight:step.py:430 Step straylight running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). INFO stpipe.Spec2Pipeline.straylight:step.py:434 Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.straylight:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.straylight:step.py:546 Step straylight done INFO stpipe.Spec2Pipeline.fringe:step.py:430 Step fringe running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). INFO stpipe.Spec2Pipeline.fringe:step.py:434 Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.fringe:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.fringe:step.py:546 Step fringe done INFO stpipe.Spec2Pipeline.pathloss:step.py:430 Step pathloss running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). INFO stpipe.Spec2Pipeline.pathloss:step.py:434 Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.pathloss:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.pathloss:step.py:546 Step pathloss done INFO stpipe.Spec2Pipeline.barshadow:step.py:430 Step barshadow running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). INFO stpipe.Spec2Pipeline.barshadow:step.py:434 Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.barshadow:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.barshadow:step.py:546 Step barshadow done INFO stpipe.Spec2Pipeline.wfss_contam:step.py:430 Step wfss_contam running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). INFO stpipe.Spec2Pipeline.wfss_contam:step.py:434 Step wfss_contam parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'} INFO stpipe.Spec2Pipeline.wfss_contam:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.wfss_contam:step.py:546 Step wfss_contam done INFO stpipe.Spec2Pipeline.photom:step.py:430 Step photom running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_srctype.fits>,). INFO stpipe.Spec2Pipeline.photom:step.py:434 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} DEBUG stpipe.Spec2Pipeline.photom:photom_step.py:35 Input is MultiSlitModel INFO stpipe.Spec2Pipeline.photom:photom_step.py:55 Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits INFO stpipe.Spec2Pipeline.photom:photom_step.py:56 Using area reference file: N/A INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_WFSS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_WFSS INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: GR150R INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: GR150R INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: F115W INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: F115W DEBUG stpipe.Spec2Pipeline.photom:photom.py:1058 PIXAR_SR = 1.00913704769668e-13, PIXAR_A2 = 0.00429339075464117 DEBUG stpipe.Spec2Pipeline.photom:photom.py:1058 PIXAR_SR = 1.00913704769668e-13, PIXAR_A2 = 0.00429339075464117 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 432, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 432, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 477, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 477, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 450, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 450, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 322, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 322, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 456, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 456, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 104, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 104, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 675, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 675, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 220, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 220, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 678, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 678, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 15, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 15, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:step.py:1016 Saved model in jw01324001001_03101_00001_nis_photom.fits INFO stpipe.Spec2Pipeline.photom:step.py:546 Step photom done INFO stpipe.Spec2Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<MultiSlitModel from jw01324001001_03101_00001_nis_cal.fits>,). INFO stpipe.Spec2Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:159 Input is a MultiSlitModel INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:386 No EXTRACT1D reference file will be used INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:397 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2805 Input is a MultiSlitModel. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2805 Input is a MultiSlitModel. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 358 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 358 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=358 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=358 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 202 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 202 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=202 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=202 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 132 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 132 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 329 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 329 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=132, ystart=0, ystop=329 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=132, ystart=0, ystop=329 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 208 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 208 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=208 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=208 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 241 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 241 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=241 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=241 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 188 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 188 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=188 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=188 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec2Pipeline.extract_1d:step.py:1016 Saved model in jw01324001001_03101_00001_nis_x1d.fits INFO stpipe.Spec2Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec2Pipeline:calwebb_spec2.py:317 Finished processing product jw01324001001_03101_00001_nis INFO stpipe.Spec2Pipeline:calwebb_spec2.py:140 Ending calwebb_spec2 INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:step.py:1016 Saved model in jw01324001001_03101_00001_nis_cal.fits INFO stpipe.Spec2Pipeline:step.py:546 Step Spec2Pipeline done INFO stpipe:pipeline.py:208 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0005.asdf INFO stpipe.Spec2Pipeline:step.py:366 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:366 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:366 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:366 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:366 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:366 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos:step.py:366 MasterBackgroundMosStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:366 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:366 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:366 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:366 FringeStep instance created. INFO stpipe.Spec2Pipeline.residual_fringe:step.py:366 ResidualFringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.wfss_contam:step.py:366 WfssContamStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:366 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:366 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:366 Extract1dStep instance created. INFO stpipe.Spec2Pipeline:step.py:430 Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec2_002_asn.json',). INFO stpipe.Spec2Pipeline:step.py:434 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} INFO stpipe.Spec2Pipeline:pipeline.py:358 Prefetching reference files for dataset: 'jw01324001001_03101_00002_nis_rate.fits' reftypes = ['apcorr', 'area', 'barshadow', 'camera', 'collimator', 'cubepar', 'dflat', 'disperser', 'distortion', 'drizpars', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'mrsxartcorr', 'msa', 'msaoper', 'ote', 'pathloss', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap', 'wfssbkg'] INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for BARSHADOW reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for CUBEPAR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for EXTRACT1D reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FILTEROFFSET reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0269.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MRSXARTCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MSAOPER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for PATHLOSS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECKERNEL reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECPROFILE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECTRACE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVEMAP reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WFSSBKG reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0019.fits'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:94 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:112 Processing product jw01324001001_03101_00002_nis INFO stpipe.Spec2Pipeline:calwebb_spec2.py:178 Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_03101_00002_nis_rate.fits ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:201 Using sourcecat file jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline:calwebb_spec2.py:203 Using segmentation map jw01324-o001_t001_niriss_clear-f115w_segm.fits INFO stpipe.Spec2Pipeline:calwebb_spec2.py:205 Using direct image jw01324-o001_t001_niriss_clear-f115w_i2d.fits DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:362 Science data does not allow imprint processing. Skipping "imprint_subtraction". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:368 Science data does not allow MSA flagging. Skipping "msa_flagging". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:373 Science data does not allow stray light correction. Skipping "straylight". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:383 Science data does not allow fringe correction. Skipping "fringe". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:389 Science data does not allow pathloss correction. Skipping "pathloss". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:394 Science data does not allow barshadow correction. Skipping "barshadow". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:399 Science data does not allow master background correction. Skipping "master_background_mos". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:430 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:434 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0032.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:452 Added Barycentric velocity correction: 1.0000819886372214 INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:452 Added Barycentric velocity correction: 1.0000819886372214 INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:546 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:430 Step bkg_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:434 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'bsub', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} INFO stpipe.Spec2Pipeline.bkg_subtract:background_step.py:58 Using WFSSBKG reference file /grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0019.fits INFO stpipe.Spec2Pipeline.bkg_subtract:background_step.py:59 Using WavelengthRange reference file /grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv DEBUG stpipe.Spec2Pipeline.bkg_subtract:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} DEBUG stpipe.Spec2Pipeline.bkg_subtract:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 1 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 1 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 2 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 2 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 4 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 4 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 5 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 5 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 6 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 6 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 7 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 7 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 9 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 9 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 10 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 10 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 11 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 11 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 12 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 12 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 13 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 13 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 14 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 14 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 15 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 15 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 16 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 16 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 17 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 17 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 755 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 755 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 756 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 756 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 762 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 762 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:855 Total of 762 grism objects defined INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:855 Total of 762 grism objects defined DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:196 mean of [25.0, 75.0] percentile grism image = 0.8225671466294301 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:196 mean of [25.0, 75.0] percentile grism image = 0.8225671466294301 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:198 mean of [25.0, 75.0] percentile background image = 1.0007333112651222 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:198 mean of [25.0, 75.0] percentile background image = 1.0007333112651222 INFO stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:205 Average of background image subtracted = 0.8117105022499869 INFO stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:205 Average of background image subtracted = 0.8117105022499869 INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:546 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:430 Step imprint_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:434 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:546 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:430 Step msa_flagging running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:434 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:546 Step msa_flagging done INFO stpipe.Spec2Pipeline.flat_field:step.py:430 Step flat_field running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:434 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:74 Input is ImageModel of exposure type NIS_WFSS DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_niriss_flat_0269.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Spec2Pipeline.flat_field:step.py:546 Step flat_field done INFO stpipe.Spec2Pipeline.extract_2d:step.py:430 Step extract_2d running with args (<ImageModel(2048, 2048) from jw01324001001_03101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.extract_2d:step.py:434 Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10} INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:61 EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:61 EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.extract_2d:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 1 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 1 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 2 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 2 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 4 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 4 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 5 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 5 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 6 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 6 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 7 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 7 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 9 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 9 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 10 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 10 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 11 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 11 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 12 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 12 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 13 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 13 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 14 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 14 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 15 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 15 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 16 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 16 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 17 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 17 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 755 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 755 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 756 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 756 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 762 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 762 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:855 Total of 10 grism objects defined INFO stpipe.Spec2Pipeline.extract_2d:util.py:855 Total of 10 grism objects defined INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:371 Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:371 Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:379 Extracting 10 grism objects INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:379 Extracting 10 grism objects DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1117, 1475), 1117 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1117, 1475), 1117 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 432 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 432 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1396, xmax:1617), (ymin:1117, ymax:1475) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1396, xmax:1617), (ymin:1117, ymax:1475) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1318, 1567), 1318 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1318, 1567), 1318 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 477 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 477 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1039, xmax:1267), (ymin:1318, ymax:1567) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1039, xmax:1267), (ymin:1318, ymax:1567) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1181, 1502), 1181 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1181, 1502), 1181 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 450 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 450 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:711, xmax:892), (ymin:1181, ymax:1502) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:711, xmax:892), (ymin:1181, ymax:1502) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (805, 1033), 805 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (805, 1033), 805 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 322 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 322 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:722, xmax:919), (ymin:805, ymax:1033) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:722, xmax:919), (ymin:805, ymax:1033) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1195, 1399), 1195 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1195, 1399), 1195 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 456 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 456 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:864, xmax:1018), (ymin:1195, ymax:1399) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:864, xmax:1018), (ymin:1195, ymax:1399) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (221, 550), 221 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (221, 550), 221 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 104 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 104 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1920, xmax:2048), (ymin:221, ymax:550) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1920, xmax:2048), (ymin:221, ymax:550) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1795, 2005), 1795 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1795, 2005), 1795 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 675 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 675 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1470, xmax:1587), (ymin:1795, ymax:2005) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1470, xmax:1587), (ymin:1795, ymax:2005) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (525, 761), 525 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (525, 761), 525 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 220 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 220 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:801.5415030931132, xmax:811.5415030931132), (ymin:525, ymax:761) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:801.5415030931132, xmax:811.5415030931132), (ymin:525, ymax:761) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1795, 2036), 1795 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1795, 2036), 1795 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 678 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 678 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:32, xmax:260), (ymin:1795, ymax:2036) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:32, xmax:260), (ymin:1795, ymax:2036) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (-12, 194), 0 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (-12, 194), 0 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 15 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 15 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:480, xmax:619), (ymin:0, ymax:194) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:480, xmax:619), (ymin:0, ymax:194) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:515 Finished extractions INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:515 Finished extractions INFO stpipe.Spec2Pipeline.extract_2d:step.py:546 Step extract_2d done INFO stpipe.Spec2Pipeline.srctype:step.py:430 Step srctype running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.srctype:step.py:434 Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None} INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=432, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=432, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=477, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=477, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=450, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=450, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=322, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=322, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=456, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=456, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=104, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=104, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=675, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=675, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=220, type=POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=220, type=POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=678, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=678, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=15, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=15, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:step.py:546 Step srctype done INFO stpipe.Spec2Pipeline.straylight:step.py:430 Step straylight running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.straylight:step.py:434 Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.straylight:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.straylight:step.py:546 Step straylight done INFO stpipe.Spec2Pipeline.fringe:step.py:430 Step fringe running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.fringe:step.py:434 Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.fringe:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.fringe:step.py:546 Step fringe done INFO stpipe.Spec2Pipeline.pathloss:step.py:430 Step pathloss running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.pathloss:step.py:434 Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.pathloss:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.pathloss:step.py:546 Step pathloss done INFO stpipe.Spec2Pipeline.barshadow:step.py:430 Step barshadow running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.barshadow:step.py:434 Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.barshadow:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.barshadow:step.py:546 Step barshadow done INFO stpipe.Spec2Pipeline.wfss_contam:step.py:430 Step wfss_contam running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.wfss_contam:step.py:434 Step wfss_contam parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'} INFO stpipe.Spec2Pipeline.wfss_contam:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.wfss_contam:step.py:546 Step wfss_contam done INFO stpipe.Spec2Pipeline.photom:step.py:430 Step photom running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.photom:step.py:434 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} DEBUG stpipe.Spec2Pipeline.photom:photom_step.py:35 Input is MultiSlitModel INFO stpipe.Spec2Pipeline.photom:photom_step.py:55 Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits INFO stpipe.Spec2Pipeline.photom:photom_step.py:56 Using area reference file: N/A INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_WFSS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_WFSS INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: GR150R INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: GR150R INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: F115W INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: F115W DEBUG stpipe.Spec2Pipeline.photom:photom.py:1058 PIXAR_SR = 1.00913704769668e-13, PIXAR_A2 = 0.00429339075464117 DEBUG stpipe.Spec2Pipeline.photom:photom.py:1058 PIXAR_SR = 1.00913704769668e-13, PIXAR_A2 = 0.00429339075464117 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 432, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 432, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 477, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 477, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 450, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 450, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 322, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 322, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 456, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 456, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 104, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 104, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 675, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 675, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 220, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 220, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 678, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 678, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 15, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 15, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 17.0872 INFO stpipe.Spec2Pipeline.photom:step.py:546 Step photom done INFO stpipe.Spec2Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<MultiSlitModel from jw01324001001_03101_00002_nis_cal.fits>,). INFO stpipe.Spec2Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:159 Input is a MultiSlitModel INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:386 No EXTRACT1D reference file will be used INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:397 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2805 Input is a MultiSlitModel. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2805 Input is a MultiSlitModel. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 220 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 357 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 357 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [220.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=357 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=220, ystart=0, ystop=357 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 248 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=248 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 180 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 320 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [180.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=180, ystart=0, ystop=320 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 196 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [196.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=196, ystart=0, ystop=227 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 153 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 203 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 203 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=203 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=153, ystart=0, ystop=203 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 127 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 127 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 328 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 328 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [127.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [127.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=127, ystart=0, ystop=328 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=127, ystart=0, ystop=328 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 116 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 209 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 209 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [116.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=209 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=116, ystart=0, ystop=209 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 9 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 235 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=9, ystart=0, ystop=235 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 227 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 240 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 240 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [227.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=240 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=227, ystart=0, ystop=240 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 138 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 193 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 193 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [138.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=193 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=138, ystart=0, ystop=193 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec2Pipeline.extract_1d:step.py:1016 Saved model in jw01324001001_03101_00002_nis_x1d.fits INFO stpipe.Spec2Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec2Pipeline:calwebb_spec2.py:317 Finished processing product jw01324001001_03101_00002_nis INFO stpipe.Spec2Pipeline:calwebb_spec2.py:140 Ending calwebb_spec2 INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:step.py:1016 Saved model in jw01324001001_03101_00002_nis_cal.fits INFO stpipe.Spec2Pipeline:step.py:546 Step Spec2Pipeline done INFO stpipe:pipeline.py:208 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0005.asdf INFO stpipe.Spec2Pipeline:step.py:366 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:366 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:366 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:366 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:366 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:366 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos:step.py:366 MasterBackgroundMosStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:366 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:366 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:366 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:366 FringeStep instance created. INFO stpipe.Spec2Pipeline.residual_fringe:step.py:366 ResidualFringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.wfss_contam:step.py:366 WfssContamStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:366 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:366 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:366 Extract1dStep instance created. INFO stpipe.Spec2Pipeline:step.py:430 Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec2_005_asn.json',). INFO stpipe.Spec2Pipeline:step.py:434 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} INFO stpipe.Spec2Pipeline:pipeline.py:358 Prefetching reference files for dataset: 'jw01324001001_05101_00002_nis_rate.fits' reftypes = ['apcorr', 'area', 'barshadow', 'camera', 'collimator', 'cubepar', 'dflat', 'disperser', 'distortion', 'drizpars', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'mrsxartcorr', 'msa', 'msaoper', 'ote', 'pathloss', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap', 'wfssbkg'] INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for BARSHADOW reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for CUBEPAR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for EXTRACT1D reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FILTEROFFSET reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0279.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MRSXARTCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MSAOPER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for PATHLOSS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECKERNEL reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECPROFILE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECTRACE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVEMAP reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WFSSBKG reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0023.fits'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:94 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:112 Processing product jw01324001001_05101_00002_nis INFO stpipe.Spec2Pipeline:calwebb_spec2.py:178 Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_05101_00002_nis_rate.fits ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:201 Using sourcecat file jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline:calwebb_spec2.py:203 Using segmentation map jw01324-o001_t001_niriss_clear-f115w_segm.fits INFO stpipe.Spec2Pipeline:calwebb_spec2.py:205 Using direct image jw01324-o001_t001_niriss_clear-f115w_i2d.fits DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:362 Science data does not allow imprint processing. Skipping "imprint_subtraction". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:368 Science data does not allow MSA flagging. Skipping "msa_flagging". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:373 Science data does not allow stray light correction. Skipping "straylight". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:383 Science data does not allow fringe correction. Skipping "fringe". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:389 Science data does not allow pathloss correction. Skipping "pathloss". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:394 Science data does not allow barshadow correction. Skipping "barshadow". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:399 Science data does not allow master background correction. Skipping "master_background_mos". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:430 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:434 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:452 Added Barycentric velocity correction: 1.000081950938299 INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:452 Added Barycentric velocity correction: 1.000081950938299 INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:546 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:430 Step bkg_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:434 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'bsub', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} INFO stpipe.Spec2Pipeline.bkg_subtract:background_step.py:58 Using WFSSBKG reference file /grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0023.fits INFO stpipe.Spec2Pipeline.bkg_subtract:background_step.py:59 Using WavelengthRange reference file /grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv DEBUG stpipe.Spec2Pipeline.bkg_subtract:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} DEBUG stpipe.Spec2Pipeline.bkg_subtract:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 73 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 73 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 96 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 96 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 118 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 118 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 146 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 146 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 189 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 189 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 226 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 226 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 237 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 237 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 247 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 247 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 256 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 256 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 297 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 297 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 299 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 299 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 325 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 325 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 342 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 342 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 420 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 420 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 435 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 435 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 449 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 449 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 464 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 464 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 467 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 467 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 483 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 483 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 488 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 488 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 490 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 490 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 519 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 519 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 520 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 520 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 531 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 531 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 560 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 560 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 592 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 592 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 654 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 654 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 676 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 676 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 678 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 678 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 688 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 688 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 706 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 706 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 738 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 738 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:811 Excluding off-image object: 761, order 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:811 Excluding off-image object: 761, order 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:811 Excluding off-image object: 762, order 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:811 Excluding off-image object: 762, order 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:855 Total of 760 grism objects defined INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:855 Total of 760 grism objects defined DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:196 mean of [25.0, 75.0] percentile grism image = 0.826046520951128 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:196 mean of [25.0, 75.0] percentile grism image = 0.826046520951128 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:198 mean of [25.0, 75.0] percentile background image = 1.0065453229571621 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:198 mean of [25.0, 75.0] percentile background image = 1.0065453229571621 INFO stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:205 Average of background image subtracted = 0.8123122843134357 INFO stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:205 Average of background image subtracted = 0.8123122843134357 INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:546 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:430 Step imprint_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:434 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:546 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:430 Step msa_flagging running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:434 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:546 Step msa_flagging done INFO stpipe.Spec2Pipeline.flat_field:step.py:430 Step flat_field running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:434 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:74 Input is ImageModel of exposure type NIS_WFSS DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_niriss_flat_0279.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Spec2Pipeline.flat_field:step.py:546 Step flat_field done INFO stpipe.Spec2Pipeline.extract_2d:step.py:430 Step extract_2d running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.extract_2d:step.py:434 Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10} INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:61 EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:61 EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.extract_2d:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 73 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 73 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 96 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 96 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 118 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 118 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 146 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 146 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 189 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 189 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 226 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 226 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 237 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 237 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 247 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 247 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 256 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 256 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 297 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 297 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 299 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 299 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 325 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 325 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 342 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 342 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 420 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 420 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 435 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 435 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 449 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 449 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 464 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 464 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 467 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 467 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 483 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 483 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 488 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 488 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 490 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 490 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 519 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 519 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 520 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 520 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 531 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 531 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 560 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 560 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 592 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 592 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 654 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 654 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 676 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 676 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 678 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 678 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 688 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 688 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 706 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 706 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 738 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 738 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 750 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 751 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 753 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 757 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 760 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:811 Excluding off-image object: 761, order 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:811 Excluding off-image object: 761, order 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:811 Excluding off-image object: 762, order 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:811 Excluding off-image object: 762, order 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:855 Total of 10 grism objects defined INFO stpipe.Spec2Pipeline.extract_2d:util.py:855 Total of 10 grism objects defined INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:371 Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:371 Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:379 Extracting 10 grism objects INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:379 Extracting 10 grism objects DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1182, 1467), 1182 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1182, 1467), 1182 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 432 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 432 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1346, xmax:1641), (ymin:1182, ymax:1467) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1346, xmax:1641), (ymin:1182, ymax:1467) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1383, 1558), 1383 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1383, 1558), 1383 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 477 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 477 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:989, xmax:1290), (ymin:1383, ymax:1558) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:989, xmax:1290), (ymin:1383, ymax:1558) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1246, 1493), 1246 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1246, 1493), 1246 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 450 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 450 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:661, xmax:916), (ymin:1246, ymax:1493) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:661, xmax:916), (ymin:1246, ymax:1493) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (871, 1024), 871 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (871, 1024), 871 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 322 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 322 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:672, xmax:943), (ymin:871, ymax:1024) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:672, xmax:943), (ymin:871, ymax:1024) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1261, 1390), 1261 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1261, 1390), 1261 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 456 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 456 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:814, xmax:1041), (ymin:1261, ymax:1390) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:814, xmax:1041), (ymin:1261, ymax:1390) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (286, 542), 286 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (286, 542), 286 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 104 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 104 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1870, xmax:2048), (ymin:286, ymax:542) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1870, xmax:2048), (ymin:286, ymax:542) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1861, 1996), 1861 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1861, 1996), 1861 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 675 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 675 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1420, xmax:1611), (ymin:1861, ymax:1996) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1420, xmax:1611), (ymin:1861, ymax:1996) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (671.3684781855097, 681.3684781855097), 671.3684781855097 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (671.3684781855097, 681.3684781855097), 671.3684781855097 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 220 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 220 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:691, xmax:887), (ymin:671.3684781855097, ymax:681.3684781855097) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:691, xmax:887), (ymin:671.3684781855097, ymax:681.3684781855097) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1860, 2028), 1860 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1860, 2028), 1860 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 678 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 678 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:0, xmax:284), (ymin:1860, ymax:2028) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:0, xmax:284), (ymin:1860, ymax:2028) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (52, 185), 52 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (52, 185), 52 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 15 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 15 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:430, xmax:643), (ymin:52, ymax:185) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:430, xmax:643), (ymin:52, ymax:185) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:515 Finished extractions INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:515 Finished extractions INFO stpipe.Spec2Pipeline.extract_2d:step.py:546 Step extract_2d done INFO stpipe.Spec2Pipeline.srctype:step.py:430 Step srctype running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.srctype:step.py:434 Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None} INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=432, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=432, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=477, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=477, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=450, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=450, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=322, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=322, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=456, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=456, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=104, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=104, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=675, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=675, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=220, type=POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=220, type=POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=678, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=678, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=15, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=15, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:step.py:546 Step srctype done INFO stpipe.Spec2Pipeline.straylight:step.py:430 Step straylight running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.straylight:step.py:434 Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.straylight:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.straylight:step.py:546 Step straylight done INFO stpipe.Spec2Pipeline.fringe:step.py:430 Step fringe running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.fringe:step.py:434 Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.fringe:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.fringe:step.py:546 Step fringe done INFO stpipe.Spec2Pipeline.pathloss:step.py:430 Step pathloss running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.pathloss:step.py:434 Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.pathloss:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.pathloss:step.py:546 Step pathloss done INFO stpipe.Spec2Pipeline.barshadow:step.py:430 Step barshadow running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.barshadow:step.py:434 Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.barshadow:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.barshadow:step.py:546 Step barshadow done INFO stpipe.Spec2Pipeline.wfss_contam:step.py:430 Step wfss_contam running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.wfss_contam:step.py:434 Step wfss_contam parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'} INFO stpipe.Spec2Pipeline.wfss_contam:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.wfss_contam:step.py:546 Step wfss_contam done INFO stpipe.Spec2Pipeline.photom:step.py:430 Step photom running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.photom:step.py:434 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} DEBUG stpipe.Spec2Pipeline.photom:photom_step.py:35 Input is MultiSlitModel INFO stpipe.Spec2Pipeline.photom:photom_step.py:55 Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits INFO stpipe.Spec2Pipeline.photom:photom_step.py:56 Using area reference file: N/A INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_WFSS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_WFSS INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: GR150C INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: GR150C INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: F115W INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: F115W DEBUG stpipe.Spec2Pipeline.photom:photom.py:1058 PIXAR_SR = 1.00913704769668e-13, PIXAR_A2 = 0.00429339075464117 DEBUG stpipe.Spec2Pipeline.photom:photom.py:1058 PIXAR_SR = 1.00913704769668e-13, PIXAR_A2 = 0.00429339075464117 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 432, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 432, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 477, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 477, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 450, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 450, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 322, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 322, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 456, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 456, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 104, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 104, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 675, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 675, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 220, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 220, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 678, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 678, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 15, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 15, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:step.py:546 Step photom done INFO stpipe.Spec2Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<MultiSlitModel from jw01324001001_05101_00002_nis_cal.fits>,). INFO stpipe.Spec2Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:159 Input is a MultiSlitModel INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:386 No EXTRACT1D reference file will be used INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:397 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2805 Input is a MultiSlitModel. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2805 Input is a MultiSlitModel. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 284 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 284 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [284.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [284.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=284 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=284 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 174 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 174 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [174.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [174.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=174 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=174 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 152 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 152 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [152.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [152.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=152 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=152 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 128 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 128 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [128.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [128.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=128 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=128 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 177 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 177 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 255 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 255 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [255.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [255.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=177, ystart=0, ystop=255 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=177, ystart=0, ystop=255 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 134 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 134 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [134.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [134.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=134 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=134 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 283 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 283 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 167 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 167 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [167.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [167.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=283, ystart=0, ystop=167 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=283, ystart=0, ystop=167 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 132 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 132 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [132.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=132 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=132 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec2Pipeline.extract_1d:step.py:1016 Saved model in jw01324001001_05101_00002_nis_x1d.fits INFO stpipe.Spec2Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec2Pipeline:calwebb_spec2.py:317 Finished processing product jw01324001001_05101_00002_nis INFO stpipe.Spec2Pipeline:calwebb_spec2.py:140 Ending calwebb_spec2 INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:step.py:1016 Saved model in jw01324001001_05101_00002_nis_cal.fits INFO stpipe.Spec2Pipeline:step.py:546 Step Spec2Pipeline done INFO stpipe:pipeline.py:208 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_niriss_pars-spec2pipeline_0005.asdf INFO stpipe.Spec2Pipeline:step.py:366 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:366 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:366 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:366 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:366 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:366 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos:step.py:366 MasterBackgroundMosStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background_mos.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:366 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:366 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:366 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:366 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:366 FringeStep instance created. INFO stpipe.Spec2Pipeline.residual_fringe:step.py:366 ResidualFringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:366 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:366 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.wfss_contam:step.py:366 WfssContamStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:366 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:366 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:366 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:366 Extract1dStep instance created. INFO stpipe.Spec2Pipeline:step.py:430 Step Spec2Pipeline running with args ('/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324-o001_20220629t171902_spec2_007_asn.json',). INFO stpipe.Spec2Pipeline:step.py:434 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_bsub': False, 'fail_on_exception': True, 'save_wfss_esec': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10}, 'master_background_mos': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'}, 'residual_fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'residual_fringe', 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_intermediate_results': False, 'ignore_region_min': None, 'ignore_region_max': None}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'wfss_contam': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'output_shape': None, 'crpix': None, 'crval': None, 'rotation': None, 'pixel_scale_ratio': 1.0, 'pixel_scale': None, 'single': False, 'blendheaders': True, 'allowed_memory': None, 'in_memory': True}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'drizzle', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None}}} INFO stpipe.Spec2Pipeline:pipeline.py:358 Prefetching reference files for dataset: 'jw01324001001_05101_00001_nis_rate.fits' reftypes = ['apcorr', 'area', 'barshadow', 'camera', 'collimator', 'cubepar', 'dflat', 'disperser', 'distortion', 'drizpars', 'extract1d', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'mrsxartcorr', 'msa', 'msaoper', 'ote', 'pathloss', 'photom', 'regions', 'sflat', 'speckernel', 'specprofile', 'spectrace', 'specwcs', 'wavecorr', 'wavelengthrange', 'wavemap', 'wfssbkg'] INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for BARSHADOW reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for CUBEPAR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_drizpars_0002.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for EXTRACT1D reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FILTEROFFSET reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_niriss_flat_0279.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MRSXARTCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for MSAOPER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for PATHLOSS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECKERNEL reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECPROFILE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECTRACE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WAVEMAP reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:366 Prefetch for WFSSBKG reference file is '/grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0023.fits'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:94 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:112 Processing product jw01324001001_05101_00001_nis INFO stpipe.Spec2Pipeline:calwebb_spec2.py:178 Working on input /internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20/jw01324001001_05101_00001_nis_rate.fits ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:201 Using sourcecat file jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline:calwebb_spec2.py:203 Using segmentation map jw01324-o001_t001_niriss_clear-f115w_segm.fits INFO stpipe.Spec2Pipeline:calwebb_spec2.py:205 Using direct image jw01324-o001_t001_niriss_clear-f115w_i2d.fits DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:362 Science data does not allow imprint processing. Skipping "imprint_subtraction". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:368 Science data does not allow MSA flagging. Skipping "msa_flagging". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:373 Science data does not allow stray light correction. Skipping "straylight". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:383 Science data does not allow fringe correction. Skipping "fringe". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:389 Science data does not allow pathloss correction. Skipping "pathloss". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:394 Science data does not allow barshadow correction. Skipping "barshadow". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:399 Science data does not allow master background correction. Skipping "master_background_mos". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:430 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:434 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'sip_approx': True, 'sip_max_pix_error': 0.1, 'sip_degree': None, 'sip_max_inv_pix_error': 0.1, 'sip_inv_degree': None, 'sip_npoints': 12, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:80 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': 'N/A', 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:niriss.py:46 reference files used in NIRISS WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_niriss_distortion_0012.asdf', 'filteroffset': None, 'specwcs': '/grp/crds/cache/references/jwst/jwst_niriss_specwcs_0033.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:452 Added Barycentric velocity correction: 1.0000819578442075 INFO stpipe.Spec2Pipeline.assign_wcs:niriss.py:452 Added Barycentric velocity correction: 1.0000819578442075 INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:96 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:546 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:430 Step bkg_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:434 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'bsub', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None, 'wfss_mmag_extract': None} INFO stpipe.Spec2Pipeline.bkg_subtract:background_step.py:58 Using WFSSBKG reference file /grp/crds/cache/references/jwst/jwst_niriss_wfssbkg_0023.fits INFO stpipe.Spec2Pipeline.bkg_subtract:background_step.py:59 Using WavelengthRange reference file /grp/crds/cache/references/jwst/jwst_niriss_wavelengthrange_0002.asdf INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv DEBUG stpipe.Spec2Pipeline.bkg_subtract:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} DEBUG stpipe.Spec2Pipeline.bkg_subtract:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 73 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 73 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 96 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 96 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 118 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 118 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 189 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 189 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 204 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 204 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 226 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 226 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 237 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 237 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 247 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 247 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 256 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 256 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 297 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 297 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 299 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 299 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 325 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 325 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 329 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 329 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 342 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 342 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 348 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 348 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 420 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 420 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 435 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 435 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 449 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 449 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 464 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 464 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 467 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 467 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 483 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 483 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 488 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 488 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 490 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 490 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 502 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 502 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 519 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 519 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 520 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 520 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 531 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 531 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 592 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 592 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 654 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 654 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 676 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 676 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 678 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 678 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 688 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 688 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 706 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 706 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 738 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 738 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 754 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:855 Total of 762 grism objects defined INFO stpipe.Spec2Pipeline.bkg_subtract:util.py:855 Total of 762 grism objects defined DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:196 mean of [25.0, 75.0] percentile grism image = 0.8233823209553072 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:196 mean of [25.0, 75.0] percentile grism image = 0.8233823209553072 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:198 mean of [25.0, 75.0] percentile background image = 1.0065838172969401 DEBUG stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:198 mean of [25.0, 75.0] percentile background image = 1.0065838172969401 INFO stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:205 Average of background image subtracted = 0.8096614187973705 INFO stpipe.Spec2Pipeline.bkg_subtract:background_sub.py:205 Average of background image subtracted = 0.8096614187973705 INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:546 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:430 Step imprint_subtract running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:434 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:546 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:430 Step msa_flagging running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:434 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:546 Step msa_flagging done INFO stpipe.Spec2Pipeline.flat_field:step.py:430 Step flat_field running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:434 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:74 Input is ImageModel of exposure type NIS_WFSS DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_niriss_flat_0279.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:201 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:117 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Spec2Pipeline.flat_field:step.py:546 Step flat_field done INFO stpipe.Spec2Pipeline.extract_2d:step.py:430 Step extract_2d running with args (<ImageModel(2048, 2048) from jw01324001001_05101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.extract_2d:step.py:434 Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'slit_name': None, 'extract_orders': None, 'grism_objects': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'wfss_mmag_extract': None, 'wfss_nbright': 10} INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:61 EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:61 EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.extract_2d:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:util.py:688 Getting objects from jw01324-o001_t001_niriss_clear-f115w_cat.ecsv DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:697 Extracting with wavelength_range {1: (0.97, 1.32)} INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 3 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 8 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 46 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 73 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 73 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 80 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 85 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 96 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 96 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 104 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 105 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 118 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 118 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 119 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 145 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 149 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 161 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 167 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 176 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 189 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 189 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 194 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 204 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 204 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 226 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 226 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 237 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 237 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 247 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 247 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 248 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 256 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 256 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 268 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 297 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 297 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 299 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 299 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 303 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 313 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 325 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 325 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 329 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 329 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 331 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 339 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 342 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 342 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 348 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 348 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 355 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 359 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 400 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 420 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 420 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 431 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 435 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 435 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 445 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 449 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 449 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 464 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 464 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 467 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 467 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 472 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 483 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 483 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 488 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 488 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 490 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 490 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 497 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 502 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 502 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 518 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 519 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 519 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 520 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 520 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 523 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 531 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 531 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 592 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 592 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 623 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 654 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 654 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 664 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 676 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 676 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 678 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 678 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 682 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 688 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 688 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 696 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 706 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 706 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 730 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 731 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 738 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 738 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 749 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 758 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 759 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:816 Partial order on detector for obj: 761 order: 1 INFO stpipe.Spec2Pipeline.extract_2d:util.py:855 Total of 10 grism objects defined INFO stpipe.Spec2Pipeline.extract_2d:util.py:855 Total of 10 grism objects defined INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:371 Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:371 Grism object list created from source catalog: jw01324-o001_t001_niriss_clear-f115w_cat.ecsv INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:379 Extracting 10 grism objects INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:379 Extracting 10 grism objects DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1178, 1462), 1178 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1178, 1462), 1178 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 432 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 432 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1338, xmax:1633), (ymin:1178, ymax:1462) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1338, xmax:1633), (ymin:1178, ymax:1462) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1379, 1553), 1379 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1379, 1553), 1379 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 477 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 477 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:981, xmax:1282), (ymin:1379, ymax:1553) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:981, xmax:1282), (ymin:1379, ymax:1553) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1242, 1489), 1242 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1242, 1489), 1242 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 450 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 450 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:653, xmax:908), (ymin:1242, ymax:1489) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:653, xmax:908), (ymin:1242, ymax:1489) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (866, 1020), 866 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (866, 1020), 866 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 322 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 322 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:664, xmax:935), (ymin:866, ymax:1020) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:664, xmax:935), (ymin:866, ymax:1020) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1256, 1386), 1256 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1256, 1386), 1256 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 456 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 456 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:806, xmax:1033), (ymin:1256, ymax:1386) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:806, xmax:1033), (ymin:1256, ymax:1386) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (282, 537), 282 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (282, 537), 282 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 104 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 104 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1862, xmax:2048), (ymin:282, ymax:537) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1862, xmax:2048), (ymin:282, ymax:537) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1856, 1992), 1856 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1856, 1992), 1856 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 675 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 675 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1412, xmax:1603), (ymin:1856, ymax:1992) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:1412, xmax:1603), (ymin:1856, ymax:1992) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (666.8592440605073, 676.8592440605073), 666.8592440605073 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (666.8592440605073, 676.8592440605073), 666.8592440605073 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 220 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 220 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:683, xmax:879), (ymin:666.8592440605073, ymax:676.8592440605073) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:683, xmax:879), (ymin:666.8592440605073, ymax:676.8592440605073) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1856, 2023), 1856 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (1856, 2023), 1856 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 678 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 678 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:0, xmax:276), (ymin:1856, ymax:2023) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:0, xmax:276), (ymin:1856, ymax:2023) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (48, 180), 48 DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:414 YYY, (48, 180), 48 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 15 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:427 Subarray extracted for obj: 15 order: 1: INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:422, xmax:635), (ymin:48, ymax:180) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:428 Subarray extents are: (xmin:422, xmax:635), (ymin:48, ymax:180) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:484 Computing wavelengths INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:515 Finished extractions INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:515 Finished extractions INFO stpipe.Spec2Pipeline.extract_2d:step.py:546 Step extract_2d done INFO stpipe.Spec2Pipeline.srctype:step.py:430 Step srctype running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.srctype:step.py:434 Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'source_type': None} INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:39 Input EXP_TYPE is NIS_WFSS INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=432, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=432, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=477, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=477, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=450, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=450, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=322, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=322, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=456, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=456, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=104, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=104, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=675, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=675, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=220, type=POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=220, type=POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=678, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=678, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=15, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:srctype.py:183 source_id=15, type=EXTENDED INFO stpipe.Spec2Pipeline.srctype:step.py:546 Step srctype done INFO stpipe.Spec2Pipeline.straylight:step.py:430 Step straylight running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.straylight:step.py:434 Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.straylight:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.straylight:step.py:546 Step straylight done INFO stpipe.Spec2Pipeline.fringe:step.py:430 Step fringe running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.fringe:step.py:434 Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20'} INFO stpipe.Spec2Pipeline.fringe:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.fringe:step.py:546 Step fringe done INFO stpipe.Spec2Pipeline.pathloss:step.py:430 Step pathloss running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.pathloss:step.py:434 Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.pathloss:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.pathloss:step.py:546 Step pathloss done INFO stpipe.Spec2Pipeline.barshadow:step.py:430 Step barshadow running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.barshadow:step.py:434 Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.barshadow:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.barshadow:step.py:546 Step barshadow done INFO stpipe.Spec2Pipeline.wfss_contam:step.py:430 Step wfss_contam running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.wfss_contam:step.py:434 Step wfss_contam parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'save_simulated_image': False, 'save_contam_images': False, 'maximum_cores': 'none'} INFO stpipe.Spec2Pipeline.wfss_contam:step.py:464 Step skipped. INFO stpipe.Spec2Pipeline.wfss_contam:step.py:546 Step wfss_contam done INFO stpipe.Spec2Pipeline.photom:step.py:430 Step photom running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_rate.fits>,). INFO stpipe.Spec2Pipeline.photom:step.py:434 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'inverse': False, 'source_type': None} DEBUG stpipe.Spec2Pipeline.photom:photom_step.py:35 Input is MultiSlitModel INFO stpipe.Spec2Pipeline.photom:photom_step.py:55 Using photom reference file: /grp/crds/cache/references/jwst/jwst_niriss_photom_0041.fits INFO stpipe.Spec2Pipeline.photom:photom_step.py:56 Using area reference file: N/A INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:144 Using instrument: NIRISS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:145 detector: NIS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_WFSS INFO stpipe.Spec2Pipeline.photom:photom.py:146 exp_type: NIS_WFSS INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: GR150C INFO stpipe.Spec2Pipeline.photom:photom.py:148 filter: GR150C INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: F115W INFO stpipe.Spec2Pipeline.photom:photom.py:150 pupil: F115W DEBUG stpipe.Spec2Pipeline.photom:photom.py:1058 PIXAR_SR = 1.00913704769668e-13, PIXAR_A2 = 0.00429339075464117 DEBUG stpipe.Spec2Pipeline.photom:photom.py:1058 PIXAR_SR = 1.00913704769668e-13, PIXAR_A2 = 0.00429339075464117 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 432, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 432, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 477, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 477, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 450, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 450, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 322, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 322, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 456, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 456, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 104, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 104, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 675, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 675, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 220, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 220, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 678, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 678, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 15, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:384 Working on slit 15, order 1 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:photom.py:719 PHOTMJSR value: 16.6386 INFO stpipe.Spec2Pipeline.photom:step.py:546 Step photom done INFO stpipe.Spec2Pipeline.extract_1d:step.py:430 Step extract_1d running with args (<MultiSlitModel from jw01324001001_05101_00001_nis_cal.fits>,). INFO stpipe.Spec2Pipeline.extract_1d:step.py:434 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1d', 'search_output_file': True, 'input_dir': '/internal/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-3/test_niriss_wfss_run_nis_wfss_spec20', 'smoothing_length': None, 'bkg_fit': None, 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'center_xy': None, 'apply_apcorr': True, 'soss_threshold': 0.01, 'soss_n_os': 2, 'soss_transform': None, 'soss_tikfac': None, 'soss_width': 40.0, 'soss_bad_pix': 'model', 'soss_modelname': None} DEBUG stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:159 Input is a MultiSlitModel INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:386 No EXTRACT1D reference file will be used INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:397 Using APCORR file /grp/crds/cache/references/jwst/jwst_niriss_apcorr_0004.fits DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2805 Input is a MultiSlitModel. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2805 Input is a MultiSlitModel. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 432 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 432 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 294 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 283 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 283 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [283.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [283.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=283 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=294, ystart=0, ystop=283 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 477 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 477 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 300 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 173 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 173 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [173.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [173.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=173 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=300, ystart=0, ystop=173 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 450 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 450 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 254 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 246 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [246.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=254, ystart=0, ystop=246 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 322 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 322 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 270 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 153 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 153 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [153.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=153 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=270, ystart=0, ystop=153 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 456 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 456 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 226 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 129 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 129 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [129.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [129.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=129 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=226, ystart=0, ystop=129 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 104 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 104 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 185 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 185 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 254 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 254 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [254.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [254.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=185, ystart=0, ystop=254 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=185, ystart=0, ystop=254 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 675 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 675 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 190 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 135 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 135 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [135.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [135.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=135 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=190, ystart=0, ystop=135 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 220 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 220 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 195 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 9 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [9.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=195, ystart=0, ystop=9 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3770 Applying Aperture correction. INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 678 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 678 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 275 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 275 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 166 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 166 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [166.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [166.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=275, ystart=0, ystop=166 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=275, ystart=0, ystop=166 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 15 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:2813 Working on slit 15 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2814 Slit is of type <class 'stdatamodels.properties.ObjectNode'> INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3614 Setting use_source_posn to False for source type EXTENDED DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial xstop = 212 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystart = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 131 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 initial ystop = 131 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 initial bkg_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_fit = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:454 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1655 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1656 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [131.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1723 Converting extraction limits to [[-0.5], [131.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=131 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3433 Using extraction limits: xstart=0, xstop=212, ystart=0, ystop=131 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:2952 Not copying from the INT_TIMES table because this is not a TSO exposure. INFO stpipe.Spec2Pipeline.extract_1d:step.py:1016 Saved model in jw01324001001_05101_00001_nis_x1d.fits INFO stpipe.Spec2Pipeline.extract_1d:step.py:546 Step extract_1d done INFO stpipe.Spec2Pipeline:calwebb_spec2.py:317 Finished processing product jw01324001001_05101_00001_nis INFO stpipe.Spec2Pipeline:calwebb_spec2.py:140 Ending calwebb_spec2 INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:core.py:130 Results used CRDS context: jwst_1019.pmap INFO stpipe.Spec2Pipeline:step.py:1016 Saved model in jw01324001001_05101_00001_nis_cal.fits INFO stpipe.Spec2Pipeline:step.py:546 Step Spec2Pipeline done | |||